feat: get all databases (#1983)

This commit is contained in:
Nathan.fooo
2023-03-14 01:02:54 +08:00
committed by GitHub
parent 5a17716fd8
commit ad5213cfad
20 changed files with 234 additions and 189 deletions

View File

@ -59,7 +59,7 @@ class _BuiltInPageWidgetState extends State<BuiltInPageWidget> {
child: CircularProgressIndicator(),
);
},
future: AppService().getView(appID, gridID),
future: AppBackendService().getView(appID, gridID),
);
}

View File

@ -169,7 +169,7 @@ class _LinkToPageMenuState extends State<LinkToPageMenu> {
);
}
},
future: AppService().fetchViews(widget.layoutType),
future: AppBackendService().fetchViews(widget.layoutType),
);
}