├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── toastify.css └── toastify.js ├── example └── lib │ └── main.dart ├── lib ├── toast.dart └── toast_web.dart ├── pubspec.yaml └── screenshot ├── 141107.png └── 141134.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/README.md -------------------------------------------------------------------------------- /assets/toastify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/assets/toastify.css -------------------------------------------------------------------------------- /assets/toastify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/assets/toastify.js -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /lib/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/lib/toast.dart -------------------------------------------------------------------------------- /lib/toast_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/lib/toast_web.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshot/141107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/screenshot/141107.png -------------------------------------------------------------------------------- /screenshot/141134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appdev/FlutterToast/HEAD/screenshot/141134.png --------------------------------------------------------------------------------