Flutter - Drawer 抽屜視圖與自定義header

移動開發中,drawerLayout抽屜視圖是比較經常使用的一種控件。通常將用戶的頭像,用戶名等信息在抽屜視圖中呈現。 drawer中也能夠提供一些選項,好比跳轉去設置頁,跳轉去用戶資料頁面等等。html

Flutter提供了Drawer組件;結合ListView等組件,開發者能夠快速地製做出抽屜視圖。app

使用material中的UserAccountsDrawerHeader

使用material中的UserAccountsDrawerHeader,設置accountNamecurrentAccountPictureide

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效果

UserAccountsDrawerHeader文檔請見 https://docs.flutter.io/flutter/material/UserAccountsDrawerHeader-class.htmlspa

自定義header

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的效果圖

在自定義header的過程當中,咱們組合使用了多種widget; 有層疊的Stack,用於對齊的Align,設定具體尺寸和margin的Container,水平放置的Row以及豎直放置的Column。 這些widget的各有特色,根據具體狀況來組合使用。同一個UI效果,作法也不止一種。htm

相關文章
相關標籤/搜索