A delighful and very interactive toast or a snackbar to add more delight to your application
Features
- Trigger a toastbar
- Slide to dismiss a toastbar
- Auto dimiss a toastbar
- Dismiss on demand via action buttons
- Stacking a toasbar in a delightful way!
Getting started
In pubspec.yaml
    delightful_toast: ^1.1.0
// add the import statement
import  'package:delightful_toast/delight_toast.dart';
Usage
Use the toasbar whenever a event has been triggered like onPressed/onTapped or in any other situation where the event is enforced
ElevatedButton( onPressed:(){
     DelightToastBar(
              builder: (context) => const ToastCard(
                leading: Icon(
                  Icons.flutter_dash,
                  size: 28,
                ),
                title: Text(
                  "Hi I'm Dash, Let's have a walkthrough of Delight Toast",
                  style: TextStyle(
                    fontWeight: FontWeight.w700,
                    fontSize: 14,
                  ),
                ),
              ),
            ).show(context);
},
     child: const Text("Toast!")
)