void main() {
runApp(new MyApp());
if(Platform.isAndroid){ // 设置状态栏背景及颜色
SystemUiOverlayStyle systemUiOverlayStyle = SystemUiOverlayStyle(statusBarColor: Colors.transparent);
SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);
// SystemChrome.setEnabledSystemUIOverlays([]); //隐藏状态栏
}
}