1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-09-18 21:38:48 +00:00

Can get the list of friends of a user

This commit is contained in:
2019-06-15 08:16:47 +02:00
parent d04334f7c9
commit f26e6139cd
4 changed files with 189 additions and 16 deletions

View File

@@ -14,8 +14,16 @@ Widget buildCenteredProgressBar() {
}
/// Build and return a full loading page
Widget buildLoadingPage() {
Widget buildLoadingPage({
bool showAppBar = false,
String routeTitle,
}) {
return Scaffold(
appBar: showAppBar
? AppBar(
title: Text(routeTitle),
)
: null,
body: buildCenteredProgressBar(),
);
}