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.