Stateless widget and stateful widget | Flutter tutorial for beginners step by step | SCODE
what is a Stateless widget? A StatefulWidget tracks its own internal state. A StatelessWidget doesn’t have any internal state that changes during the lifetime of the widget.It doesn’t care about its configuration or what data it’s displaying. It might be passed configuration from its parent, or the configuration might be defined within the widget, but…
