Flutter去掉AppBar避免body溢出到状态栏

没有AppBar的Flutter,如果不在Scaffold中使用AppBar会发现默认是沉浸式。
Flutter去掉AppBar避免body溢出到状态栏_第1张图片
预留出状态栏的高度方法

Scaffold(
      appBar: PreferredSize(
        preferredSize:Size.fromHeight(MediaQuery.of(context).size.height * 0.07),
        child:SafeArea(
          top: true,
          child: Offstage(),
        ),
      ),
      body: indexStack,
      bottomNavigationBar: initNavigationBar(),
    );

你可能感兴趣的:(flutter,dart)