Search code examples
flutterflutter-getx

Flutter Getx Snackbar not wroking


I have created a flutter app and used getx package. But then I used it to show the snack bar, the function gets executed but the snack bar is not showing up.

 onPressed: () {
        print("executed");
        Get.snackbar(
            "title",
            "content",
          ); 
        },

Solution

  • Change the MaterialApp() widget to GetMaterialApp() widget.