Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yako-dev/flutter-status-alert
- Owner: yako-dev
- License: apache-2.0
- Created: 2019-12-03T14:01:40.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-24T10:56:19.000Z (12 months ago)
- Last Synced: 2024-06-19T19:40:09.041Z (5 months ago)
- Topics: alert, android, dart, flutter, ios, mobile, status, ui, ui-components, widget
- Language: Dart
- Homepage: https://pub.dev/packages/status_alert
- Size: 2.69 MB
- Stars: 131
- Watchers: 4
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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