私はフラッターアプリ引き出しヘッダーの色の代わりに背景画像を使用できるのだろうか?
私は彼の色をカスタマイズすることができますが、カスタムイメージで色を変更するプロパティがあるのか疑問に思います。
ドロワーヘッダとして画像を設定するには、DrugherHeaderのデコレーションを使用できます。
return Scaffold(
appBar: AppBar(title: Text(title)),
body: Center(child: Text('some text')),
drawer: Drawer(
// Add a ListView to the drawer. This ensures the user can scroll
// through the options in the drawer if there isn't enough vertical
// space to fit everything.
child: ListView(
// Important: Remove any padding from the 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: () {
// Update the state of the app
// ...
// Then close the drawer
Navigator.pop(context);
},
),
ListTile(
title: Text('Item 2'),
onTap: () {
// Update the state of the app
// ...
// Then close the drawer
Navigator.pop(context);
},
),
],
),
),
);
_
これを参照してください link
その中にコンテナーを宣言してください。これは私のために働いた:
Drawer(
elevation: 5,
child: Container(
width: 200,
height: 100,
decoration: BoxDecoration(
image: new DecorationImage(
image: AssetImage("lib/assets/bookcover.jpg"),
fit: BoxFit.cover,
),
),
_