没有AppBar的Flutter,如果不在Scaffold中使用AppBar会发现默认是沉浸式。
预留出状态栏的高度方法:
appBar: PreferredSize(
preferredSize:
Size.fromHeight(MediaQuery.of(context).size.height * 0.07),
child: SafeArea(
top: true,
child: Offstage(),
),
),