Everything in Flutter is a widget. Every component of the UI is made from a widget. Widgets are used to display Ui elements, such as text, buttons, image and more complex elements like lists and forms.
...
...
@@ -87,3 +89,83 @@ Perhaps the most common widget, the `Scaffold` widget provides a basic structure
### Others
For more build-in widgets, you can visit the [widget catalog](https://docs.flutter.dev/development/ui/widgets) on the official Flutter docs page for a full list
# Example of How These Widgets Are Used
Below is a snippet from the change password page with comments explaining the various parts of the widget: