要解决Appbar.content中的"
AppBar(
title: Text('AppBar'),
centerTitle: true,
elevation: 0,
content: Stack(
children: [
Positioned.fill(
child: Image(
image: AssetImage('assets/image.jpg'),
fit: BoxFit.cover,
),
),
// 其他内容
],
),
)
AppBar(
title: Text('AppBar'),
centerTitle: true,
elevation: 0,
content: PreferredSize(
preferredSize: Size.fromHeight(200), // 设置Image的高度
child: Image(
image: AssetImage('assets/image.jpg'),
fit: BoxFit.cover,
),
),
)
这两种方法都可以解决Appbar.content中的"
上一篇:AppBar 上方的空白空间