Scaffold Widget In Flutter

In this article, you will learn How To Use Scaffold Widget In Flutter. What Is Scaffold Widget Scaffold Widget gives you the Material Design of…

The post Scaffold Widget In Flutter appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Jatin Hemnani

In this article, you will learn How To Use Scaffold Widget In Flutter.

What Is Scaffold Widget

Scaffold Widget gives you the Material Design of your app. It gives you all the basic things which you need in a Mobile App like Tabs, App Bar, Drawer, Navigation, etc.

Create Scaffold Widget

import 'package:flutter/material.dart';

The material package which you have imported contains all the basic Material Design now you just have to use it.

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Home'),
          centerTitle: true,
        ),
        body: Center(
          child: Text('Codesource.io'),
        ),
      ),
    );
  }
}

Here you have created the Scaffold() widget with an AppBar for this article.

You can create basic widgets like App Drawer, Tabs, Bottom Navigation Bar with Scaffold() Widget.

Result

Before Scaffold
After Scaffold

The post Scaffold Widget In Flutter appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Jatin Hemnani


Print Share Comment Cite Upload Translate Updates
APA

Jatin Hemnani | Sciencx (2021-02-28T17:56:34+00:00) Scaffold Widget In Flutter. Retrieved from https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/

MLA
" » Scaffold Widget In Flutter." Jatin Hemnani | Sciencx - Sunday February 28, 2021, https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/
HARVARD
Jatin Hemnani | Sciencx Sunday February 28, 2021 » Scaffold Widget In Flutter., viewed ,<https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/>
VANCOUVER
Jatin Hemnani | Sciencx - » Scaffold Widget In Flutter. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/
CHICAGO
" » Scaffold Widget In Flutter." Jatin Hemnani | Sciencx - Accessed . https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/
IEEE
" » Scaffold Widget In Flutter." Jatin Hemnani | Sciencx [Online]. Available: https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/. [Accessed: ]
rf:citation
» Scaffold Widget In Flutter | Jatin Hemnani | Sciencx | https://www.scien.cx/2021/02/28/scaffold-widget-in-flutter/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.