We are going to launch a brand new course of Flutter app development – Flutter Crash course for absolute beginners. In this course we will start from 0 and will cover all the basics that need to create professional app.
This course is divided into 3 main parts
- Basics
- Stateless Widgets
- Stateful Widgets
Watch Youtube tutorial
Flutter Basic Overview
This is the first phase in flutter app development in which we will start from flutter installation. Then we will create our first flutter application. List is defined as below:-
Flutter Stateless Widgets
Stateless widgets are the widgets that never change their state once the app is up and running. They include the layouts, texts etc. Below is the list of stateless widgets that we cover in this series.
- What is a widget and types – Overview
- Image
- Icon
- Container
- Elevated Button
- AppBar with Action Buttons
- Row
- Column
- Expanded
- ListView Static
- ListView Dynamic
- Navigation Drawer
- Floating Action Button
- Stack
- Card
Flutter Stateful Widgets
Stateful widgets are the widgets that change their state at run time or when user interacts with the application. Below is the list of stateful widgets that we cover in this series.
- What is Stateful VS Stateless Widgets?
- Move from one Screen to another
- Text-Fields
- Radio buttons
- Checkbox
- Form
- Small App to Include both types