抖动通知中的阴影

问题描述 投票:0回答:1

我做了

appbar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0
),

还是我得到这个

Notification shadow

如何在脚手架和通知中心之间实现无缝过渡?

android flutter flutter-layout
1个回答
1
投票

如果希望您的应用程序使用透明状态栏,请使用此选项。 Transparent status bar in flutter

  @override
  Widget build(BuildContext context) {
    return AnnotatedRegion<SystemUiOverlayStyle>(
      value: SystemUiOverlayStyle(
        statusBarColor: Colors.transparent,
      ),
      child: MaterialApp(
        title: 'Test',
    );
  }
© www.soinside.com 2019 - 2024. All rights reserved.