2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 18:25:26 +00:00

Add some //TODO items

This commit is contained in:
Oliver Walters
2020-04-18 22:53:02 +10:00
parent c4d8b5ce1c
commit 8374691d8c
3 changed files with 25 additions and 7 deletions

View File

@ -68,9 +68,13 @@ abstract class RefreshableState<T extends StatefulWidget> extends State<T> {
appBar: getAppBar(context),
drawer: getDrawer(context),
floatingActionButton: getFab(context),
body: RefreshIndicator(
onRefresh: refresh,
child: getBody(context)
body: Builder(
builder: (BuildContext context) {
return RefreshIndicator(
onRefresh: refresh,
child: getBody(context)
);
}
),
bottomNavigationBar: getBottomNavBar(context),
);