showSnackBar function
helper function to display snack bar message
Implementation
void showSnackBar(BuildContext context, String text){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(text)));
}
helper function to display snack bar message
void showSnackBar(BuildContext context, String text){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(text)));
}