nicer placeholders

This commit is contained in:
Henry Hiles 2026-01-15 20:03:36 -05:00
commit fae1a81153
No known key found for this signature in database
3 changed files with 24 additions and 10 deletions

View file

@ -15,9 +15,11 @@ class MentionChip extends StatelessWidget {
),
),
backgroundColor: Theme.of(context).colorScheme.primary,
onPressed: () {
// TODO: Open room or join room dialog, or user popover
showAboutDialog(context: context);
},
onPressed: () => showDialog(
context: context,
builder: (_) => Dialog(
child: Text("TODO: Open room or join room dialog, or user popover"),
), // TODO
),
);
}