Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

in_app_notification

a flutter package to show custom in-app notification with any widgets.

in_app_notification

✍️ 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!'),
    );
    

Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

Top