flutter_fast_ui_white
简易 Material 白色主题
入门
在 pubspec.yaml 中
dependencies:
flutter_fast_ui_white:
git:
url: https://github.com/organic-nailer/flutter_fast_ui_white
void main() {
runApp(FastTheme(
accentColor: Colors.pink,
child: MyApp(),
));
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: FastTheme.of(context).theme,
home: SampleListPage(),
);
}
}
特定 Widget
- FastAppBar
- showFastTimePicker
- showFastDatePicker