Intro to Flutter
In this module we will learn the basics of Flutter: - Why learn Flutter? - The creation of basic Flutter widgets
StartIntroduction to Widgets
Lesson 1 of 3
- 1Let’s explore a fundamental concept in Flutter: Widgets. Widgets represent elements of our user interface: * Buttons * Lists * Toolbars * Text * and everything else! If we examine a Flut…
- 2Let’s get ready to create our first app. Flutter apps import the Flutter framework at the top of the main.dart file. This brings in the libraries necessary to display Flutter output: import ‘pack…
- 3A Text widget displays text within an application. Text widgets are created by calling their constructor Text(), and passing in some …
- 4The text of our application doesn’t really stand out. So let’s change the code to make the text big and red! As mentioned earlier, the Text widget constructor allows multiple parameters including …
- 5We’ve learned how to display text, but what about basic images? Displaying a simple image is the role of the Icon Widget. Icons are o…