An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# flutter_show_overlay

show_overlay plugin for [Flutter](https://flutter.io).
Supports iOS, Web, Android and MacOS.

![image](https://github.com/yinxulai/flutter_show_overlay/blob/master/example/snapshot.gif)

## 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)