Skip to content

Instantly share code, notes, and snippets.

@VB10
Created June 5, 2021 22:37
Show Gist options
  • Save VB10/076e5b2565fab758b66c193e95785884 to your computer and use it in GitHub Desktop.
Save VB10/076e5b2565fab758b66c193e95785884 to your computer and use it in GitHub Desktop.
@override
void initState() {
super.initState();
homeService = HomeService(EncryptNetworkManager().manager);
_fetchAndShow();
}
Future<void> _fetchAndShow() async {
_changeLoading();
items = await homeService.fetchItem();
_changeLoading();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment