Flutter

Adding a new package to Flutter Project

Flutter has lot of external packages available which can greatly helps us to easily build our app. In this article we gonna look, how... Read more »

Lifecycle Methods of Flutter Stateful Widgets

Unlike stateless widgets, the stateful widget is more complex and has more lifecycle methods. In this case of a stateful widget, the state object... Read more »

Lifecycle Methods of Flutter Stateless Widget

Stateless widget has only one lifecycle method, it is the build method. Read more »

Flutter Page Navigation – One Page to Another Route

In this post, we gonna check how to navigate from one page to another in flutter. So here we will be moving from screen1... Read more »

Routes in Flutter – Using Navigator.pushNamed

Multiple routes for navigation can be easily handled using routes in flutter. For this we can define list of the routes , set initial... Read more »

Setup Flutter in Windows 10 – Android Studio

Let us setup flutter for the Windows 10 PC. We will be installing flutter and make it ready to work with Android Studio IDE.... Read more »

Flutter Hello World App Code

Creating a hello world app in flutter. import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Center( child: Text('Hello World'), ), ), ); } Read more »