What is Scaffold in Flutter?

 Scaffold provides a basic material design layout for the app.

It includes:

  • AppBar

  • Drawer

  • BottomNavigationBar

  • FloatingActionButton

  • Body

Example:

Scaffold( appBar: AppBar(title: Text("Home")), body: Center(child: Text("Hello")), floatingActionButton: FloatingActionButton(onPressed: () {}), );

Comments

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?