1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Can remove a friend from the list of friends

This commit is contained in:
2019-05-01 19:29:46 +02:00
parent a7b2bf410e
commit 7c3390f8af
4 changed files with 90 additions and 6 deletions

View File

@ -60,3 +60,9 @@ void showImageFullScreen(BuildContext context, String url) {
}));
}
/// Show simple snack
void showSimpleSnack(BuildContext context, String message) {
Scaffold.of(context).showSnackBar(SnackBar(content: Text(message)));
}