flutter 中可以通过SystemChrome类通过SystemUiOverlayStyle来设置状态栏颜色,导航栏颜色等等,但是在经过实验时发现,在设置状态栏颜色时只有设置透明才可以显示成白色,代码如下:
SystemUiOverlayStyle systemUiOverlayStyle = SystemUiOverlayStyle(statusBarColor: Colors.transparent);
SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);
runApp(ChangeNotifierProvider(create: (_)=>LoginModel(),child: MyApp()));