Flutter

API to get Live CryptoCurrency Prices – Bitcoin Price

Get the latest prices of cryptocurrencies like Bitcoin, Ethereum, LiteCoin etc. using an API. We can easily get the current market prices of these... Read more »

Flutter: Generate Platform Specific UI – Android / iOS

Generate UI element in flutter app based on whether the running in iOS or Android. Check if the Flutter app is running on apple... Read more »

Flutter: Generate Dropdown List from List Data

Creating a dropdown list for selecting an item from a list. Create a dropdown button in flutter and dynamically add dropdown list items to... Read more »

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 »

For in loop in Flutter Dart – Example Code

For in loop is used in flutter to loop through a list of items. Here is the sample code looping thought list of currency... 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 »

Flutter: Input TextField with Icon and Style Decoration Code

TextField is one the important form widget in Apps. It is used to get user input data. So in this post we gonna see... Read more »

JSON Parsing in Dart – Flutter App Development

We can easily parse JSON data in flutter using the jsonDecode function. This function is available with the dart.convert package. So firstly we have... Read more »

Get Location Details – Latitude and Longitude in Flutter

If we are building some mobile app that needs location details, then we will have to find latitude and longitude values. We can get... 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 »