StatelessWidget
- a widget with no state attached.
- Are useful when the part of the user interface you are describing does not depend on anything other than the initial configuration information in the widget.
- the widget never changes, once built.
- Widget never changes.
Text(
'I like Flutter!',
style: TextStyle(fontWeight: FontWeight.bold),
);
Semantic portal