Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Showsnackbar in flutter

I don’t want to call show SnackBar on every single Page. Is there any way to call snack bar globally only once? I used this But it shows context error.

ScaffoldMessenger.of(context).showSnackBar(snackBar);

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

You must write this method in a separate file. Call it where you need it, and it is necessary to pass the current class context.

showAlert(BuildContext context) {
 ScaffoldMessenger.of(context).showSnackBar(
     const SnackBar(
      content: Text("Type Your message here..."),
    ),
  );
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading