An open API service indexing awesome lists of open source software.

https://github.com/swayangjit/widgets-flutter


https://github.com/swayangjit/widgets-flutter

dart dart2 flutter inheritedwidget state-management stateful stateless widget widgets

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

## Widget

- A `Widget` is description of part of UI on the screen.
- A `Widget` is a way to declare and construct UI.
- A `Widget` is not just a piece of UI , it might display something, it might help define a design, it might help with user interactions. For example `Padding` is a `Widget`, `Margin` is a `Widget`, `Center` is a `Widget`, Layout `Row` and `Coloumn` is also a `Widget`.
- `Widget`s are arranged into a tree of parent and child `Widget`.
- `Widget`s are nested each other.