所以我在我的flutter應用程序里建了一個抽屜(我第一次使用它),然后有些事情困擾著我。所以當你把圖像放在抽屜的頭上時,圖像本身不會到達屏幕的頂部。
Picture :
這是我抽屜的密碼:
drawer: Drawer(
child: ListView(
children: <Widget>[
DrawerHeader(
padding: EdgeInsets.zero,
decoration: BoxDecoration(
color: Colors.blue,
image: DecorationImage(
fit: BoxFit.cover,
image: AssetImage("assets/images/fighters.jpg")),
),
child: Center(
child: Text(
"Menu",
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 30,
),
),
),
)
],
),
),
我沒有任何代碼填充
請幫我把這個修好,謝謝你的幫助!
try this:
OR