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

https://github.com/amdkholil/tiny-dialog

Flutter Package
https://github.com/amdkholil/tiny-dialog

Last synced: 21 days ago
JSON representation

Flutter Package

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!",
);
```