我正在尝试将状态栏颜色更改为白色。我在颤振上找到了这家酒吧。我尝试在我的飞镖文件上使用示例代码。
在我的应用程序中工作得很好
import 'package:flutter_statusbarcolor/flutter_statusbarcolor.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { FlutterStatusbarcolor.setStatusBarColor(Colors.white); return MaterialApp( title: app_title, theme: ThemeData( primarySwatch: Colors.blue, ), home: HomePage(title: home_title), ); } }
(这个包)
UPD: 推荐解决方案(Flutter 2.0 及更高版本)
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( statusBarColor: Colors.white ));