Flutter Notes

Widgets:

Widgets are core building block of flutter framework

flutter/material.dart

Widgets

Visible Widgets

MaterialApp:

A root widget for our app provided by material.dart

Scaffold:

A structure with various UI parts included (eg.appbar, body etc)

AppBar:

It is showed on the top of screen. can contain title.

Text:

Contains texts.

Raised Button:

A button with box layout

Column:

A column that can contain multiple widgets using children argument which takes an array of widgets