Created
October 18, 2021 04:56
-
-
Save anoobbava/2643af7d6f19450084377c76871b940d to your computer and use it in GitHub Desktop.
blogging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Widget build(BuildContext context) { | |
return FutureBuilder( | |
future: fetchMovies(), | |
builder: (context, AsyncSnapshot snapshot) { | |
if (!snapshot.hasData) { | |
return Center( | |
child: Image.asset('assets/images/loading.gif'), | |
); | |
} else { | |
return HorizontalCards(snapshot.data.movies); | |
} | |
}, | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment