Flutter 设置状态栏(StatusBar)颜色/透明
import 'package:flutter/services.dart';
//...
SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle(statusBarColor: Colors.transparent)
);
//...Only honored in Android version M and greater
即:仅对安卓M(6.0)及以上生效
import 'package:flutter/services.dart';
//...
SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle(statusBarColor: Colors.transparent)
);
//...Only honored in Android version M and greater
即:仅对安卓M(6.0)及以上生效