overlay support for flutter

admin

provider support for overlay, easy to build toast and internal notification

overlay_support

provider support for overlay, easy to build toast and internal notification.

A picture is worth a thousand words

simple notification

simple toast

How To Use

  1. add dependencies into you project pubspec.yaml file
dependencies:
  overlay_support: ^0.0.3
  1. import package into your dart file
import 'package:overlay_support/overlay_support.dart';

3.use showSimpleNotification method to show a notification at top of screen

showSimpleNotification(context,
    Text("this is a message from simple notification"),
    background: Colors.green);


Next Article : https://flutterappdev.com/2019/02/19/a-flutter-material-button-that-animates-between-progress-and-error-states/

Credit (github url) : https://github.com/boyan01/overlay_support

Leave a Comment