SweetNotify 🍬✨

SweetNotify is a Flutter package that allows you to show modern and customizable notifications in your applications.


πŸ“Έ Screenshot

SweetNotify
Demo


πŸš€ 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.

Libraries

sweetnotify