Skip to content

cb-cloud/flutter_in_app_notification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
May 20, 2022
Oct 27, 2022
Jul 1, 2022
May 18, 2022
Jun 2, 2021
May 27, 2021
Jul 1, 2022
May 27, 2021
Jun 25, 2021
Jun 7, 2021
Jun 4, 2021
Jul 1, 2022

Repository files navigation

💬 in_app_notification

pub package

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

✍️ Usage

  1. Import it.

    dependencies:
        in_app_notification: <latest-version>
    import 'package:in_app_notification/in_app_notification.dart';
  2. Place InAppNotification Widget into your app.

     return InAppNotification(
       child: MaterialApp(
         title: 'In-App Notification Demo',
         home: const HomePage(),
       ),
     );
  3. Invoke show() static method of InAppNotification.

    InAppNotification.show(
      child: NotificationBody(count: _count),
      context: context,
      onTap: () => print('Notification tapped!'),
    );

🗺 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.