Kokila
Kokila

Reputation: 317

Flutter showsnackbar at top of the screen?

how to show flutter snackbar at top of the screen ?

 ScaffoldMessenger.of(context).showSnackBar(snackBar(context,Strings.order_not_selected));

Upvotes: 0

Views: 2095

Answers (1)

Muhammad Umair
Muhammad Umair

Reputation: 273

You can use Getx library for it, you can customize it accordingly.

 Get.snackbar(
              "Title of Snackbar",
               "Message of SnackBar",
               icon: Icon(Icons.person, color: Colors.white),
               snackPosition: SnackPosition.TOP,
                 );

Upvotes: 4

Related Questions