https://github.com/amdkholil/tiny-dialog
Flutter Package
https://github.com/amdkholil/tiny-dialog
Last synced: 21 days ago
JSON representation
Flutter Package
- Host: GitHub
- URL: https://github.com/amdkholil/tiny-dialog
- Owner: amdkholil
- License: mit
- Created: 2024-07-19T04:24:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-19T04:27:07.000Z (about 2 years ago)
- Last Synced: 2025-10-22T23:52:27.586Z (9 months ago)
- Language: Dart
- Size: 576 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
This package inspired by sweetalert2, but just very simple

## Getting started
add dependency latest version with command:
```command
$ flutter pub add tiny_dialog
```
or just adding to `pubspec.yaml`
```yaml
dependecies:
tiny_dialog:
```
## Usage
simple dialog without any config:
```flutter
TinyDialog.success(
context,
message:"Body message success!",
);
```