https://github.com/yinxulai/flutter_show_overlay
🎁 show_overlay plugin for Flutter. Supports iOS, Web, Android and MacOS, not bind navigator.
https://github.com/yinxulai/flutter_show_overlay
flutter navigator overlay plugin
Last synced: 7 months ago
JSON representation
🎁 show_overlay plugin for Flutter. Supports iOS, Web, Android and MacOS, not bind navigator.
- Host: GitHub
- URL: https://github.com/yinxulai/flutter_show_overlay
- Owner: yinxulai
- License: mit
- Created: 2020-06-15T14:20:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T14:02:48.000Z (about 4 years ago)
- Last Synced: 2025-01-14T08:28:51.770Z (9 months ago)
- Topics: flutter, navigator, overlay, plugin
- Language: Dart
- Homepage:
- Size: 7.58 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_show_overlay
show_overlay plugin for [Flutter](https://flutter.io).
Supports iOS, Web, Android and MacOS.
## Getting Started
In your flutter project add the dependency:
```yml
dependencies:
...
show_overlay: ^1.0.8
```For help getting started with Flutter, view the online [documentation](https://flutter.io/).
### Document
See document in [pub.dev](https://pub.dev/documentation/show_overlay/latest/show_overlay/showOverlay.html)
## Usage
```dart
import 'package:show_overlay/show_overlay.dart';
showOverlay(
context: context,
builder: (_, __, ___) {
return // some Widget;
},
);
}
```## Example
Example source code in the folder [example](https://github.com/yinxulai/flutter_show_overlay/tree/master/example)