better to do

This commit is contained in:
Henry Hiles 2026-01-14 15:19:37 -05:00
commit ba93340461
No known key found for this signature in database

View file

@ -256,9 +256,10 @@ class Sidebar extends HookConsumerWidget {
icon: Icon(Icons.add),
),
IconButton(
onPressed: () => Navigator.of(context).push(
// TODO: explore public rooms/spaces
MaterialPageRoute(builder: (_) => SettingsPage()),
onPressed: () => showDialog(
context: context,
builder: (context) =>
AlertDialog(title: Text("To-do")),
),
icon: Icon(Icons.explore),
),