drawer drawer

 

drawer: Drawer(
          child: Column(
            children: <Widget>[
              Row(
                children: <Widget>[
                  Expanded(
                    child: UserAccountsDrawerHeader(
                      currentAccountPicture: CircleAvatar(
                        backgroundImage: NetworkImage('https://c-ssl.duitang.com/uploads/item/201712/22/20171222223729_d8HCB.jpeg'),
                      ),
                      accountName: Text('西大街'),
                      accountEmail: Text('[email protected]'),
                    ),
                  ),
                ],
              ),
              Text('data')
            ],
          ),
        ),

 

Guess you like

Origin www.cnblogs.com/xhrr/p/11417529.html
Recommended