qtoast

Last updated:

0 purchases

qtoast Image
qtoast Images
Add to Cart

Description:

qtoast

qtoast #
Quick and Easy Toasting in Flutter.
Setup #
dependencies
qtoast: ....

import 'package:qtoast/qtoast.dart' ;
copied to clipboard
Demo #
https://user-images.githubusercontent.com/46340446/116847600-94bd0c80-ac0a-11eb-9e79-4dd009ecb375.mov
Easy Toasting Examples #
// Normal Toast
...
ElevatedButton(
onPressed: () {
QToast(
message: 'Normal Toast',
context: context
).show();
},
child: Text("Normal Toast"),
),
...


// Toast with success message
...
ElevatedButton(
onPressed: () {
QToast(
message: 'Success Toast',
context: context,
type: ToastType.success,
).show();
},
child: Text("Success Toast"),
),
...

// Toast with failure/error message
...
ElevatedButton(
onPressed: () {
QToast(
message: 'Error Toast',
context: context,
type: ToastType.error,
).show();
},
child: Text("Error Toast"),
),
...
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.