Tag: Flutter

Flutter: iOS CupertinoPicker Implementation Code

CupertinoPicker is an iOS feature that is used to pick and item from a list. It provides a function similar to the dropdown feature... Read more »

Flutter: Send data with Navigation Pop – Back Button

Send data from the second page to backwards (first page). We use navigation from page 1 to page 2. From the page 2 while... Read more »

Exception Handling in Flutter – Try Catch use example

Exceptions can happen in our program and may crash the app. To avoid this malfunctioning of app , we can make use of the... 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 »