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

show your user highly costomized SnackBars and Toasts..

TODO: Highly Customized SnackBars and Toasts.

Features #

TODO: We will upload gifs soon.

Getting started #

TODO: Just add dependency of Notify and boom you can show SnackBars and Toasts using just Build Context's extention methods (Don't worry we will add a useful example soon).

Usage #

TODO:

context.showSnackbar(
      title: "This is Title",
      titleStyle: const TextStyle(
          color: Colors.white, fontWeight: FontWeight.bold, fontSize: 16),
      subTitleWidget: const Padding(
        padding: EdgeInsets.only(top: 8.0),
        child: Text(
          "Subtitle Widget",
          style: TextStyle(color: Colors.white),
        ),
      ),
      trailing: GestureDetector(
          behavior: HitTestBehavior.opaque,
          onTap: () {
            context.showToast("Toasting");
          },
          child: const Icon(
            Icons.home,
            color: Colors.black,
          )),
      duration: const Duration(milliseconds: 1000),
      animationCurve: Curves.bounceOut,
      animateFrom: AnimateFrom.fromTop,
    );

Additional information #

TODO: We will be more than happy of your contributions.

21
likes
0
pub points
85%
popularity

Publisher

verified publisherthearesmedia.com

show your user highly costomized SnackBars and Toasts..

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on smart_snackbars