📱 Flutter
Beginner
What is the SnackBar widget?
Answer
A SnackBar is a brief message that appears at the bottom of the screen to provide lightweight feedback about an operation (e.g., "Item deleted"). Show it using ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Message"))). You can add an action (like "Undo") to the SnackBar. It automatically disappears after a short duration, or you can set a custom duration. SnackBars are queued — only one is shown at a time.
Previous
What is null safety in Dart?
Next
What is the GridView widget and how does it differ from ListView?