in_app_notification

Creator: coderz1093

Last updated:

Add to Cart

Description:

in app notification

💬 in_app_notification #

A Flutter package to show custom in-app notification with any Widgets.



✍️ Usage #


Import it.
dependencies:
in_app_notification: <latest-version>
copied to clipboard
import 'package:in_app_notification/in_app_notification.dart';
copied to clipboard


Place InAppNotification Widget into your app.
return InAppNotification(
child: MaterialApp(
title: 'In-App Notification Demo',
home: const HomePage(),
),
);
copied to clipboard


Invoke show() static method of InAppNotification.
InAppNotification.show(
child: NotificationBody(count: _count),
context: context,
onTap: () => print('Notification tapped!'),
);
copied to clipboard


🗺 Roadmap / Known issue #
See Discussions.
If you have some idea or proposal, feel free to create new one.
💭 Have a question? #
If you have a question or found issue, feel free to create an issue.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.