add placeholder navigation options
This commit is contained in:
parent
274435b83e
commit
e534b7a8a2
1 changed files with 25 additions and 5 deletions
|
|
@ -66,12 +66,32 @@ class Sidebar extends HookConsumerWidget {
|
||||||
trailingAtBottom: true,
|
trailingAtBottom: true,
|
||||||
trailing: Padding(
|
trailing: Padding(
|
||||||
padding: EdgeInsets.symmetric(vertical: 16),
|
padding: EdgeInsets.symmetric(vertical: 16),
|
||||||
child: IconButton(
|
child: Column(
|
||||||
onPressed: () => Navigator.of(
|
spacing: 8,
|
||||||
context,
|
children: [
|
||||||
).push(MaterialPageRoute(builder: (_) => SettingsPage())),
|
IconButton(
|
||||||
|
onPressed: () => Navigator.of(context).push(
|
||||||
|
// TODO: join or create room/space
|
||||||
|
MaterialPageRoute(builder: (_) => SettingsPage()),
|
||||||
|
),
|
||||||
|
icon: Icon(Icons.add),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
onPressed: () => Navigator.of(context).push(
|
||||||
|
// TODO: explore public rooms/spaces
|
||||||
|
MaterialPageRoute(builder: (_) => SettingsPage()),
|
||||||
|
),
|
||||||
|
icon: Icon(Icons.explore),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
onPressed: () => Navigator.of(context).push(
|
||||||
|
// TODO: explore public rooms/spaces
|
||||||
|
MaterialPageRoute(builder: (_) => SettingsPage()),
|
||||||
|
),
|
||||||
icon: Icon(Icons.settings),
|
icon: Icon(Icons.settings),
|
||||||
),
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue