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