Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yako-dev/flutter-status-alert

Display Apple system-like self-hiding status alerts. It is well suited for notifying user without interrupting user flow.
https://github.com/yako-dev/flutter-status-alert

alert android dart flutter ios mobile status ui ui-components widget

Last synced: 3 months ago
JSON representation

Display Apple system-like self-hiding status alerts. It is well suited for notifying user without interrupting user flow.

Awesome Lists containing this project

README

        

# Status Alert for Flutter

[![Pub Version](https://img.shields.io/pub/v/status_alert?color=blueviolet)](https://pub.dev/packages/status_alert)



## Installing:
In your pubspec.yaml
```yaml
dependencies:
status_alert: ^1.0.1
```
```dart
import 'package:status_alert/status_alert.dart';
```

## Basic Usage:
```dart
StatusAlert.show(
context,
duration: Duration(seconds: 2),
title: 'Title',
subtitle: 'Subtitle',
configuration: IconConfiguration(icon: Icons.done),
maxWidth: 260,
)
```



## Apple Podcasts vs Status Alert:


## License
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details