snackly 0.0.1
snackly: ^0.0.1 copied to clipboard
A smart, customizable, and reusable snackbar widget for Flutter apps using GetX.
snackly #
A smart and customizable Snackbar widget for Flutter, built using GetX.
This widget allows you to quickly show styled snackbars for different message types (success, error, info, warning).
✨ Features #
- 🎯 Easy to use
- 🎨 Supports multiple types: success, error, warning, info
- ⚙️ Fully customizable (colors, icons, duration, etc.)
- 📍 Show on top or bottom of the screen
- ♻️ Reusable across projects
🚀 Getting Started #
Add dependency #
dependencies:
Snackify: ^0.0.1
Usage #
Snackly.show(
title: 'Success',
message: 'Operation completed successfully',
type: SnackbarType.success,
position: SnackbarPosition.top,
);
Snackbar ذكي قابل للتخصيص باستخدام GetX. مثالي لعرض التنبيهات بطريقة أنيقة وسريعة.
الميزات #
✅ تحديد نوع التنبيه
✅ تحديد الموقع (أعلى/أسفل)
✅ تخصيص الألوان والأيقونة
✅ تصميم جاهز وجذاب
الاستخدام #
Snackly.show(
title: 'تم',
message: 'تمت العملية بنجاح',
type: SnackbarType.success,
position: SnackbarPosition.top,
);