Flutter 项目实战 05AppBar 的背景图片,沉浸式状态栏背景

首先我们得状态栏透明,new AppBar(
backgroundColor: Colors.transparent,
elevation: 0, // 阴影0,这个很重要
),

算了,直接上代码吧,很简单的代码。

Scaffold(
body: new Stack(
children: [
new AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
),
new Positioned(
child: new Container(
height: FHAdapt.px(300),
decoration: new BoxDecoration(
image: new DecorationImage(
image: AssetImage(‘assets/images/team_header_bg.png’),
fit: BoxFit.fill
),
),

       ),
     ),
   ],
  ),
);

你可能感兴趣的:(Flutter)