Closed p238049y closed 1 year ago
systemOverlayStyleを指定する
systemOverlayStyle
class Widget1 extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Colors.black, systemOverlayStyle: SystemUiOverlayStyle( statusBarBrightness: Brightness.light, // for iOS statusBarIconBrightness: Brightness.dark, // for Android ), ), body: Container(color: Colors.white), ); } }
【Flutter】ステータスバーの文字色変更の挙動について
https://user-images.githubusercontent.com/82100625/211325491-6c641be2-b086-42ab-b309-c37b76f39606.MOV
目的
方針
systemOverlayStyle
を指定する期待結果
参考
【Flutter】ステータスバーの文字色変更の挙動について