forked from lxm_flutter/FlutterUnit
18 lines
430 B
Dart
Executable File
18 lines
430 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class CustomRaisedButton extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return RaisedButton(
|
|
color: Colors.blue,
|
|
splashColor: Colors.green,
|
|
onPressed: () {},
|
|
child: Text("RaisedButton"),
|
|
textColor: Color(0xffFfffff),
|
|
padding: EdgeInsets.all(8),
|
|
elevation: 5,
|
|
highlightColor: Color(0xffF88B0A),
|
|
);
|
|
}
|
|
}
|