flutter_hot_toast 0.0.1 copy "flutter_hot_toast: ^0.0.1" to clipboard
flutter_hot_toast: ^0.0.1 copied to clipboard

A very cool and simple toast with animations. This is highly inspired by React Hot Toast.

Flutter Hot Toast #

A very cool and simple flutter toast that is highly inspired by React Hot Toast

Features #

video preview available here

Getting started #

First wrap your Material App with GlobalLoaderOverlay

Widget build(BuildContext context) { return GlobalLoaderOverlay( child: MaterialApp( title: 'Flutter Hot Toast Demo', home: const Home(), ), ); }


Now you can call the toast to show in any part of your widget that is being encapsulated in the MaterialApp widget by: context.loaderOverlay.show( widget: FlutterHotToast.loading( height: 70, width: 270, label: const Text('loading'), ), );

Usage #

onPressed: () { context.loaderOverlay.show( widget: FlutterHotToast.loading( height: 70, width: 270, label: const Text('loading'), ), ); Future.delayed(const Duration(seconds: 2), () { context.loaderOverlay.show( widget: FlutterHotToast.error( context, height: 70, width: 270, label: const Text('success'), ), ); });

Additional information #

This package uses lottie, loader_overlay and flutter_animate under the hood. #

You can find the repository link at github to contribute to this project.


If you like this project, please follow me at github

29
likes
0
pub points
67%
popularity

Publisher

unverified uploader

A very cool and simple toast with animations. This is highly inspired by React Hot Toast.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_animate, loader_overlay, lottie

More

Packages that depend on flutter_hot_toast