Green University of Bangladesh: Course Code: CSE 401 Course Title: Mobile Application Development Section: 183-DB
Green University of Bangladesh: Course Code: CSE 401 Course Title: Mobile Application Development Section: 183-DB
Section: 183-DB
Assignment
Submitted By:
Submitted to:
Page 2
Mobile Application Development
The Flutter framework is widget based. Widgets are the building blocks
of the Flutter app. Each widget is an immutable declaration of the UI.
Widgets are the configuration or the instructions for different parts of
the UI, and placing the widgets together creates the application.
There are some basic widgets which help to develop User interface.
Page 3
Mobile Application Development
Then we have to add these visible widgets to the layout widgets. All
layout widgets have either of the following:
Then we have to add the layout widgets to the page. A Flutter app is
itself a widget, and most widgets have a build() method. Instantiating
and returning a widget in the app’s build() method displays the widget.
Page 4