smart_snackbars 0.0.2 copy "smart_snackbars: ^0.0.2" to clipboard
smart_snackbars: ^0.0.2 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.close,
          color: Colors.white,
        ),
      ),
      duration: const Duration(milliseconds: 1200),
      animationCurve: Curves.ease,
      animateFrom: AnimateFrom.fromTop,
    );

Additional information #

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

20
likes
130
points
551
downloads

Publisher

verified publisherthearesmedia.com

Weekly Downloads

show your user highly costomized SnackBars and Toasts..

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on smart_snackbars