我做了
appbar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0
),
还是我得到这个
如何在脚手架和通知中心之间实现无缝过渡?
答案 0 :(得分:1)
如果您希望您的应用程序使用透明状态栏,请使用此选项。 Transparent status bar in flutter
@override
Widget build(BuildContext context) {
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
),
child: MaterialApp(
title: 'Test',
);
}