I compiled this to help flutter programmers with one or two packages to import in case of confusion that i came across while starting flutter
This comes in handy when you have to initialize plugins like notifications
, shared_preferences
and so many
other packages while displaying splash screen to keep the user entertained 🙃.
main() async {
//`runApp()` can be called more than once in the app
runApp(new SplashScreen());
var foo = await init();
runApp(new FullApp(foo: foo));
}
video_player
audioplayers
file_picker
- Flutter Slivers Overview: SliverList, SliverGrid, SliverToBoxAdapter, SliverFillRemaining [Video]
- Flutter Slivers Overview: SliverAppBar, SliverPersistentHeader [Video]
Feel free to star this page if you found this useful and make a pull request if you want to make an addition to the list to help others