Open In App

Difference Between Stateless and Stateful Widget in Flutter

As we all know the flutter app consists of widgets only, these are broadly classified into two types: 

  1. Stateless Widget
  2. Stateful Widget

State:

Before knowing the difference between the stateless and stateful widget we should take a look at the definition of State of a widget.



The State is information that can read synchronously when the widget is build and might change during the lifetime of the widget.

In simpler words, the state of the widget is the information of the objects that its properties (parameters) are holding at the time of its creation (when the widget is painted on the screen). The state can also change when it is used for example the color of RaisedButton widget might change when pressed.



Stateless Widget:

 Stateless widgets are the widgets that don’t change i.e. they are immutable. Its appearance and properties remain unchanged throughout the lifetime of the widget. In simple words, Stateless widgets cannot change their state during the runtime of the app, which means the widgets cannot be redrawn while the app is in action. 
Examples: Icon, IconButton, and Text are examples of stateless widgets. 
To create a Stateless widget, we have to override the build() method as implemented in the code below. 
 




import 'package:flutter/material.dart'
void main() = > runApp(GeeksforGeeks())
 
 
class GeeksforGeeks extends StatelessWidget {
    @override Widget build(BuildContext context)
    {return MaterialApp(
        home: Scaffold(
            backgroundColor: Colors.grey,
            appBar: AppBar(backgroundColor: Colors.green,
                           title: Text("GeeksforGeeks"), ),
            body: Container(child: Center(child: Text("Stateless Widget"),
                                          ),
                            ),
        ),
    )
    }}

Output : 
 

Stateful Widget: 

Stateful Widgets are the ones that change its properties during run-time. They are dynamic i.e., they are mutable and can be drawn multiple times within its lifetime. It can change its appearance in response to events triggered by user interactions or when it receives data. 
Examples : Checkbox, Radio Button, Slider, InkWell, Form, and TextField are examples of Stateful widgets. 
To create a Stateful widget, we have to override the createState() method, which returns the state of the widget. 
 




import 'package:flutter/material.dart'
void main() = > runApp(MyApp())
 
 
class MyApp extends StatelessWidget {
  @override Widget build(BuildContext context)
  {return MaterialApp(theme: ThemeData(
    primarySwatch: Colors.green, ),
                      home: MyHomePage(title: 'GeeksforGeeks'),
                     )}}
class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}): super(key: key)

Output : 
 

Differences Between Stateless and Stateful Widget: 

Stateless Widget:

Stateful Widget:


Article Tags :