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

https://github.com/roundedinfinity/notification_shade

A flutter plugin for opening the notification shade on android.
https://github.com/roundedinfinity/notification_shade

android flutter flutter-plugin notification-shade

Last synced: about 2 months ago
JSON representation

A flutter plugin for opening the notification shade on android.

Awesome Lists containing this project

README

          

# Notification Shade

A plug-in to open and close the notification shade on Android.

## Installing
![A test image](https://img.shields.io/github/stars/RoundedInfinity/notification_shade)

First add `notification_shade` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/packages-and-plugins/using-packages)

```yaml
notification_shade:
```

Then import it.

```dart
import 'package:notification_shade/notification_shade.dart';
```

Now you have to add this permission to your _AndroidManifext.xml_.

```xml

```

## Usage

To open the notification shade

```dart
NotificationShade.openNotificationShade;
```

And to close it

```dart
NotificationShade.closeNotificationShade;
```

Have a nice day and stay hydrated.