改写状态栏需要用到SystemUiOverlayStyle
类实现
// 首先引入依赖库
import 'package:flutter/services.dart';
// 改写 main 方法
void main() {
SystemUiOverlayStyle systemUiOverlayStyle = SystemUiOverlayStyle(statusBarColor:Colors.transparent);
SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);
runApp(MyApp());
}