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:
@@ -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(),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user