移動開發中,drawerLayout抽屜視圖是比較經常使用的一種控件。通常將用戶的頭像,用戶名等信息在抽屜視圖中呈現。 drawer中也能夠提供一些選項,好比跳轉去設置頁,跳轉去用戶資料頁面等等。html
Flutter提供了Drawer
組件;結合ListView
等組件,開發者能夠快速地製做出抽屜視圖。app
UserAccountsDrawerHeader
使用material中的UserAccountsDrawerHeader
,設置accountName
和currentAccountPicture
。ide
class MyHomePage extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new _MyHomePageState();
}
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
Widget userHeader = UserAccountsDrawerHeader(
accountName: new Text('Tom'),
accountEmail: new Text('tom@xxx.com'),
currentAccountPicture: new CircleAvatar(
backgroundImage: AssetImage('images/pic1.jpg'), radius: 35.0,),);
return Scaffold(appBar: AppBar(title: Text("Home"),),
body: new Center(child: new Text('Home page'),),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
userHeader , // 可在這裏替換自定義的header
ListTile(title: Text('Item 1'),
leading: new CircleAvatar(child: new Icon(Icons.school),),
onTap: () {
Navigator.pop(context);
},),
ListTile(title: Text('Item 2'),
leading: new CircleAvatar(child: new Text('B2'),),
onTap: () {
Navigator.pop(context);
},),
ListTile(title: Text('Item 3'),
leading: new CircleAvatar(
child: new Icon(Icons.list),),
onTap: () {
Navigator.pop(context);
},),
],
),
),);
}
}
複製代碼
使用UserAccountsDrawerHeader效果以下 ui
UserAccountsDrawerHeader
文檔請見 https://docs.flutter.io/flutter/material/UserAccountsDrawerHeader-class.htmlspa
Flutter有DrawerHeader
,咱們對其進行自定義。code
DrawerHeader
設置padding爲0,充滿整個頂部DrawerHeader
的child使用Stack
,目的是放置背景圖片Stack
偏左下的位置放置頭像和用戶名
Align
肯定對齊方式爲FractionalOffset.bottomLeft
Align
的child爲Container
,並設定一個具體高度Container
仿照ListTile
的風格,左邊是一個頭像,右邊是文字;使用Row
來分隔頭像和文字Container
的margin作出間隔,再放入一個Column
來存放Text
Column
設置水平方向左對齊與豎直方向居中Widget header = DrawerHeader(
padding: EdgeInsets.zero, /* padding置爲0 */
child: new Stack(children: <Widget>[ /* 用stack來放背景圖片 */
new Image.asset(
'images/p_h_r_600.png', fit: BoxFit.fill, width: double.infinity,),
new Align(/* 先放置對齊 */
alignment: FractionalOffset.bottomLeft,
child: Container(
height: 70.0,
margin: EdgeInsets.only(left: 12.0, bottom: 12.0),
child: new Row(
mainAxisSize: MainAxisSize.min, /* 寬度只用包住子組件便可 */
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
new CircleAvatar(
backgroundImage: AssetImage('images/pic1.jpg'),
radius: 35.0,),
new Container(
margin: EdgeInsets.only(left: 6.0),
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start, // 水平方向左對齊
mainAxisAlignment: MainAxisAlignment.center, // 豎直方向居中
children: <Widget>[
new Text("Tom", style: new TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w400,
color: Colors.white),),
new Text("What's up", style: new TextStyle(
fontSize: 14.0, color: Colors.white),),
],
),
),
],),
),
),
]),);
複製代碼
自定義header的效果圖 cdn
在自定義header的過程當中,咱們組合使用了多種widget; 有層疊的Stack
,用於對齊的Align
,設定具體尺寸和margin的Container
,水平放置的Row
以及豎直放置的Column
。 這些widget的各有特色,根據具體狀況來組合使用。同一個UI效果,作法也不止一種。htm