0

我使用以下链接中的示例来创建自定义 appBar。

该代码有效,但应用栏位于 Android 状态栏后面的屏幕顶部

如何定位 appBar 以使其在状态栏下开始呈现?

使用的版本:

  • Flutter 1.26.0-8.0.pre • 频道开发
  • 安卓R30
4

1 回答 1

1

有一个名为SafeArea的小部件可以设置小部件的填充以避免状态栏的侵入。您可以将其用作:

// Use the SafeArea here to position the AppBar under the status bar
SafeArea( 
   child: Scaffold(
      appBar: PreferredSize(
        preferredSize: Size(double.infinity, 100),
        child: Container(
          decoration: BoxDecoration(

          // ... other lines
于 2021-01-19T03:13:10.573 回答