overlay_support
Overlay 的 Provider 支持,可轻松构建吐司和内部通知。

使用方法
- 将依赖项添加到你的项目pubspec.yaml文件
dependencies:
overlay_support: ^0.0.1
- 将包导入到你的dart文件中
import 'package:overlay_support/overlay_support.dart';
- 使用
showSimpleNotification方法在屏幕顶部显示通知
showSimpleNotification(context,
Text("this is a message from simple notification"),
background: Colors.green);