https://github.com/pandoramaze/bytoast
:bread: A Toast Widget for Flutter. Pure Dart Code.
https://github.com/pandoramaze/bytoast
android dart flutter ios toast widget
Last synced: 3 months ago
JSON representation
:bread: A Toast Widget for Flutter. Pure Dart Code.
- Host: GitHub
- URL: https://github.com/pandoramaze/bytoast
- Owner: PandoraMaze
- License: bsd-3-clause
- Created: 2020-05-09T19:08:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T10:16:13.000Z (about 6 years ago)
- Last Synced: 2025-10-23T04:53:47.019Z (9 months ago)
- Topics: android, dart, flutter, ios, toast, widget
- Language: Dart
- Size: 727 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ByToast
[](https://pub.dev/packages/bytoast)
[](https://github.com/bluesofy)
A Toast Widget for Flutter.
## Feature
- 非调用原生Toast,Dart实现;
- 交互和动效接近原生Toast,不触发遮罩点击事件,跨页仍显示;
- 其他
## Get Started
### Add Dependency
```yaml
dependencies:
bytoast: ^1.1.1
```
### Usage
```dart
import 'package:toaster/toaster.dart';
/// Simple Toast
ByToast.short();
/// Toast with Icon
ByToast.withIcon();
/// Toast For Customize
ByToast.more();
```