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",
);
},
Change the MaterialApp() widget to GetMaterialApp() widget.