// 以下两行 设置android状态栏为透明的沉浸。写在组件渲染之后,是为了在渲染后进行set赋值,覆盖状态栏,写在渲染之前MaterialApp组件会覆盖掉这个值。
void main() {runApp(new MyApp());SystemUiOverlayStyle systemUiOverlayStyle = SystemUiOverlayStyle(statusBarColor:Colors.transparent);SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);
参考地址:https://www.jianshu.com/p/97e93c82ccef