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
- Host: GitHub
- URL: https://github.com/swayangjit/widgets-flutter
- Owner: swayangjit
- Created: 2020-11-01T15:22:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-08T18:20:15.000Z (almost 5 years ago)
- Last Synced: 2025-01-20T20:47:18.209Z (9 months ago)
- Topics: dart, dart2, flutter, inheritedwidget, state-management, stateful, stateless, widget, widgets
- Language: Dart
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.