show custom in-app notification with any Widgets.
Add this to your package's pubspec.yaml
file:
dependencies:
notify_inapp: ^0.0.3
Then you just have to import the package with
import 'package:notify_inapp/notify_inapp.dart';
Show a notifcation
Notify notify = Notify();
notify.show(
context,
child,
);
Dismiss a notifcation
notify.dismiss();
Param | Description | Default Value |
---|---|---|
duration | animation duration | 300 |
keepDuration | notifcation shown time | 3000 |
topOffset | Height from screen top | 40 |
dismissDirectly | not show animation when closing notification | false |
disableDrag | disable Drag down | false |
notifcation will never dismiss automatically when keepDuration is zero