nicer placeholders
This commit is contained in:
parent
3cb687a968
commit
fae1a81153
3 changed files with 24 additions and 10 deletions
|
|
@ -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
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue