sweetnotify 0.0.2
sweetnotify: ^0.0.2 copied to clipboard
SweetNotify is a Flutter package that allows you to show modern and customizable notifications in your applications.
SweetNotify π¬β¨ #
SweetNotify is a Flutter package that allows you to show modern and customizable notifications in your applications.
πΈ Screenshot #

π Installation #
dependencies:
sweetnotify: ^1.0.0
π¦ Usage #
import 'package:sweetnotify/sweetnotify.dart';
// Simple usage
SweetNotify.show(
context,
title: "Success!",
subtitle: "Your operation was completed successfully.",
type: SweetNotifyType.success,
);
// Error notification
SweetNotify.show(
context,
title: "Error!",
subtitle: "Something went wrong.",
type: SweetNotifyType.error,
);
// Error notification
SweetNotify.show(
context,
title: "Δ°nfo!",
subtitle: "Example info.",
type: SweetNotifyType.info,
);
β‘ Features #
- β Success, Error, Warning, Info types
- π¨ Customizable colors and icons
- π Auto dismiss duration
- πΌοΈ Smooth animations
π License #
This project is licensed under the MIT License.