Tag: Flutter
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 »
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 »
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 »
Creating a hello world app in flutter. import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Center( child: Text('Hello World'), ), ), ); }
Read more »