颤振抽屉背景图片

Posted

技术标签:

【中文标题】颤振抽屉背景图片【英文标题】:Flutter drawer background image 【发布时间】:2019-10-30 10:07:55 【问题描述】:

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

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

【问题讨论】:

【参考方案1】:

您可以在 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

【讨论】:

【参考方案2】:

在其中声明一个容器。这对我有用:

Drawer(
    elevation: 5,
    child: Container(
      width: 200,
      height: 100,
      decoration: BoxDecoration(
        image: new DecorationImage(
          image: AssetImage("lib/assets/bookcover.jpg"),
          fit: BoxFit.cover,
        ),
      ),

【讨论】:

以上是关于颤振抽屉背景图片的主要内容,如果未能解决你的问题,请参考以下文章

如何用颤振制作顶部导航抽屉?

如何在颤振抽屉中返回主页/主页

通过 for 循环创建颤振抽屉

设置导航抽屉的背景颜色

在颤振中,如何移动导航抽屉的内容而不是覆盖在顶部。

更改抽屉中的背景颜色 - MUI