Skip to content

Latest commit

 

History

History
54 lines (52 loc) · 2.59 KB

README.md

File metadata and controls

54 lines (52 loc) · 2.59 KB

Flutter Help

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

Displaying SplashScreen while initializing app

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));
}

Media Players

video_player
audioplayers
file_picker

Loading Spinner

PDF Reader

Fancy Bottom Navigation Bar

Fancy Scrolling effects

Shimmer Effects for ListLoaders

Fancy Text typer and text animations

Notifications

APIs and assets catalogues

Dart Algorithm Practices

Notifications

Time line widget

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