Files
FlutterUnit/lib/views/widgets/StatelessWidget/RaisedButton.dart
toly dd52bc7157 .
2020-04-07 06:30:39 +08:00

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),
);
}
}