-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Snack bar message should be optional #37
Comments
Hi, Get.snackbar was designed to have a title and a message. If you want to build a different snackbar, use GetBar().show (don't forget the "show" to have it displayed), and you will have all the customizable details to decide. Example: GetBar(
messageText: Text("Anything"),
duration: Duration(seconds: 3),
).show(); |
Thanks didn't know that API existed |
My mistake, there was this documentation and at some point it ended up being removed. |
Currently the SnackBar message is required, which leads to a large sized SnackBar. Sometimes a small quick message is all I want to show.
The text was updated successfully, but these errors were encountered: