just_toast 0.0.3
just_toast: ^0.0.3 copied to clipboard
This is just toast for flutter.
Just Toast #
This is just toast for flutter!
Usage #
showToast(context: context, text: 'toast message');
- custom
showToast(
context: context,
text: 'Custom Toast message',
duration: const Duration(milliseconds: 1000),
alignment: Alignment.center,
textStyle: const TextStyle(fontSize: 20, color: Colors.amber),
color: Colors.purple,
);