v1.1.2in_app_notification
कोई भी Widgets के साथ कस्टम ऐप-आंतरिक नोटिफिकेशन दिखाने के लिए एक Flutter पैकेज।
188लाइक 3.3 हज़ार30-दिन डाउनलोड160Pub अंक
AndroidiOSWebmacOSWindowsLinux
कस्टम ऐप-आंतरिक नोटिफिकेशन दिखाने के लिए एक Flutter पैकेज।
{"sdk":"flutter"}{"sdk":"flutter"}^1.11.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A Flutter package to show custom in-app notification with any Widgets.
https://raw.githubusercontent.com/wiki/cb-cloud/flutter_in_app_notification/assets/doc/top.gif
Import it.
dependencies:
in_app_notification: <latest-version>
import 'package:in_app_notification/in_app_notification.dart';
Place InAppNotification Widget into your app.
return InAppNotification(
child: MaterialApp(
title: 'In-App Notification Demo',
home: const HomePage(),
),
);
Invoke show() static method of InAppNotification.
InAppNotification.show(
child: NotificationBody(count: _count),
context: context,
onTap: () => print('Notification tapped!'),
);
See Discussions. If you have some idea or proposal, feel free to create new one.
If you have a question or found issue, feel free to create an issue.