in_app_notification 0.3.0
in_app_notification: ^0.3.0 copied to clipboard
A Flutter package to show custom in-app notification with any Widgets.
π¬ in_app_notification #
A Flutter package to show custom in-app notification with any Widgets.
βοΈ Usage #
-
Import it.
dependencies: in_app_notification: <latest-version>import 'package:in_app_notification/in_app_notification.dart'; -
Place
InAppNotificationWidget into your app.return InAppNotification( child: MaterialApp( title: 'In-App Notification Demo', home: const HomePage(), ), ); -
Invoke
show()static method ofInAppNotification.InAppNotification.show( child: NotificationBody(count: _count), context: context, onTap: () => print('Notification tapped!'), );
πΊ Roadmap / Known issue #
Null-safety migrationβ- Implementation for more gesture
- Swipe horizontal
- Performance optimization
CurrentlyβInAppNotificationis recommended to use inbuilderofMaterialApp, but it means create instance each time of routing.
- Animation improvement
So far, we have confirmed that using a Widget with a height higher than theβminAlertHeightspecified forInAppwill slightly break the animation.
π Have a question? #
If you have a question or found issue, feel free to create an issue.