0
How add toast in bottom center in flutter?
I added toast on screen it shows on bottom left corner on the screen I want to add it in the bottom center. I also try with ToastGravity.CENTER but it's not working
1 ответ
+ 3
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Sending Message"),
));