Flutter application design without AppBar

前端 未结 2 1602
慢半拍i
慢半拍i 2021-02-06 01:52

I tried using this kind of approach to have all of my UI (here only a Text) in the application below the status bar, but witho

2条回答
  •  耶瑟儿~
    2021-02-06 02:40

    Wrap your page content (Text or Scaffold) inside a SafeArea widget

    A widget that insets its child by sufficient padding to avoid intrusions by the operating system.

    return new SafeArea(child: new Text('text widget'));
    

提交回复
热议问题