gpt4 book ai didi

Flutter 抽屉背景图片

转载 作者:IT王子 更新时间:2023-10-29 07:18:15 25 4
gpt4 key购买 nike

我想知道我是否可以在 flutter 应用程序抽屉标题中使用背景图像而不是颜色,有什么办法吗?

我可以自定义他的颜色,但我想知道是否有任何属性可以改变自定义图像的颜色。

最佳答案

您可以在 DrawerHeader 中使用装饰将图像设置为抽屉标题

  return Scaffold(
appBar: AppBar(title: Text(title)),
body: Center(child: Text('some text')),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
DrawerHeader(
child: Text('Drawer Header'),
decoration: BoxDecoration(
color: Colors.blue,
image: DecorationImage(
image: AssetImage("assets/gold.jpg"),
fit: BoxFit.cover)
),
),
ListTile(
title: Text('Item 1'),
onTap: () {
Navigator.pop(context);
},
),
ListTile(
title: Text('Item 2'),
onTap: () {
Navigator.pop(context);
},
),
],
),
),
);

另见 link

enter image description here

关于Flutter 抽屉背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56620719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com