0

how to show flutter snackbar at top of the screen ?

 ScaffoldMessenger.of(context).showSnackBar(snackBar(context,Strings.order_not_selected));
Kokila
  • 242
  • 1
  • 13
  • https://stackoverflow.com/questions/54194999/is-there-any-way-to-achieve-a-flutter-top-snackbar – Krzysztof Kubicki Jul 01 '22 at 09:32
  • 1
    Does this answer your question? [Is there any way to achieve a Flutter top snackbar?](https://stackoverflow.com/questions/54194999/is-there-any-way-to-achieve-a-flutter-top-snackbar) – Ruchit Jul 01 '22 at 09:35

1 Answers1

5

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,
                 );
Muhammad Umair
  • 274
  • 3
  • 13