Чтобы создать панель приложений с помощью Навигатора:
@override
Widget build(BuildContext context) {
var drawerOptions = <Widget>[];
for (var i = 0; i < widget.drawerItems.length; i++) {
var d = widget.drawerItems[i];
drawerOptions.add(new ListTile(
leading: new Icon(d.icon),
title: new Text(d.title),
selected: i == _selectedDrawerIndex,
onTap: () => _onSelectItem(i),
));
}
drawerOptions.add(
new RaisedButton(onPressed: () => {}, child: new Text("Ustawienia")));
return new Scaffold(
body: NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return <Widget>[
SliverAppBar(
expandedHeight: 130.0,
floating: false,
pinned: true,
flexibleSpace: FlexibleSpaceBar(
title:
new Text(widget.drawerItems[_selectedDrawerIndex].title),
),
),
];
},
body: _getDrawerItemWidget(_selectedDrawerIndex),
),
drawer: new Drawer(
child: new Column(
children: <Widget>[
new UserAccountsDrawerHeader(
accountName: new Text("Gość"), accountEmail: null),
new Column(children: drawerOptions)
],
),
));
Результат:
Таким образом, поле нежелательного белого цвета чуть вышетело.Если я попытаюсь с обычной панелью приложений, вот так:
return new Scaffold(
appBar: new AppBar(
// here we display the title corresponding to the fragment
// you can instead choose to have a static title
title: new Text(widget.drawerItems[_selectedDrawerIndex].title),
),
drawer: new Drawer(
child: new Column(
children: <Widget>[
new UserAccountsDrawerHeader(
accountName: new Text("Gość"), accountEmail: null),
new Column(children: drawerOptions)
],
),
),
body: _getDrawerItemWidget(_selectedDrawerIndex),
);
Результат в порядке, без каких-либо дополнительных полей:
Какубрать лишнее лишнее поле и выровнять заголовок по левому краю в расширенном режиме (его следует поместить под индикатором меню гамбургера).
DrawerItem
определение класса:
class DrawerItem {
String title;
IconData icon;
DrawerItem(this.title, this.icon);
}
drawerItems
определеноследующим образом:
final drawerItems = [
new DrawerItem("Option1", Icons.list),
new DrawerItem("Option2", Icons.event_note),
new DrawerItem("Option3", Icons.account_balance),
//... etc
];