In this directory you will find all the widgets that we have discussed in the meet.
Just a bit of information about the widgets is here:
ChoiceChip can be used to select one option from a set of options. It is a chip that displays an option and can be selected, deselected, or disabled, depending on the state.
Code: lib/widgets/choice_chip.dart
Expanded widget expands a child of a Row, Column, or Flex so that the child fills the available space.
Optionally, the child can be sized to fill the available space using the flex property.
Code: lib/widgets/expanded.dart
ExpansionTile is a list tile that can be expanded or collapsed to show or hide the child.
Code: lib/widgets/expansion_tile.dart
Hero is a widget that marks its child as being a candidate for hero animations.
When a new route is pushed on top of a route containing a hero, the hero’s child is moved from the old route to the new route and animated to its new position and size.
Code: lib/widgets/hero.dart
PageView is a scrollable list that works page by page. PageView is most commonly used in combination with PageController.
Code: lib/widgets/page_view.dart
Stepper is a Material Design widget that displays progress through a sequence of steps. Steppers are particularly useful in the case of forms where one step requires the completion of another one, or where multiple steps need to be completed in order to submit the whole form.
Code: lib/widgets/stepper.dart
Visibility is a widget that controls whether the child of a widget is visible.
Code: lib/widgets/visibility.dart
WillPopScope is a widget that calls a Callback when the user tries to dismiss the current route by tapping the back button on Android or the iOS equivalent.
Code: lib/widgets/will_pop_scope.dart
Hope you had a great time learning about the widgets. Feel free to reach out to our Telegram group just in case you have any doubts or queries.