What is Scaffold in Flutter?
Scaffold provides a basic material design layout for the app.
It includes:
-
AppBar -
Drawer -
BottomNavigationBar -
FloatingActionButton -
Body
Example:
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
Post a Comment