Skip to content

List of helpful and handy tools and directions for flutter developers

Notifications You must be signed in to change notification settings

lordvidex/flutter-help

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 

Repository files navigation

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

About

List of helpful and handy tools and directions for flutter developers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published