These 10 Flutter Widgets Every Developer Must Know(3)
Flutter Knowledge Sharing #23
Welcome to my next Flutter story. Here I suggest you read this detailed explanation because for each widget we are going to look at all the essential properties and you might find some new use cases for the same widgets. Let us get started without any further explanation. Updating with knowing new widgets is essential to make amazing Flutter UIs. I have discussed 20 widgets in my previous stories.
These are the widgets, we are going to discuss.
- Dismissible
- SizedBox
- Draggable
- Flexible
- MediaQuery
- Spacer
- AnimatedIcon
- Placeholder
- RichText
- ReorderableListView
Let us discuss this one by one, someones with examples and someones with just the functionality. I hope you will get an excellent knowledge about these widgets.
Dismissible
Swiping and hiding is a common UI pattern in mobile applications. To make that in Flutter, use the Dismissible widget. It has a child, background and a key. It will detect the swipe gesture and…