v1.1.2in_app_notification
어떤 위젯과도 함께 사용할 수 있는 사용자 정의 앱 내 알림을 표시하기 위한 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.