Flutter

In this tutorial, you will learn how to internationalize your app. This is necessary if you are planning to make your app available across multiple countries. Contrary to frameworks like native Android, Flutter doesn’t have an absolutely set way of how localization is done. It gives you a lot of freedom which can be good…

Read More Internationalization Example In Flutter

In this tutorial, you will learn how to store Key-Value pairs in your apps local storage. For this purpose we will follow the next steps: Create new Flutter App, Get the dependency using pub get, Save data, Read data, Remove data. 1. Create a New Flutter Project Go ahead and create a new Flutter app.…

Read More Store Key-Value Data in Local Storage in Flutter

In this tutorial, you will learn how to pass arguments from one screen to another using a button click in Flutter. When developing with Flutter you might have seen that almost every screen requires to pass data from one screen to another and might also need to receive data back from another screen. To learn…

Read More Passing Arguments Between Screens in Flutter

In this tutorial, you will learn how to navigate from one screen to another using a button click in Flutter. For this purpose we will follow these steps: Create a new Flutter app Create the UI Create the navigation 1. Create a New Flutter Project Go ahead and create a new Flutter app. If you…

Read More Navigate to a New Screen on Button Click in Flutter

In this tutorial, you will learn how to handle double-tap events on images in Flutter. You not only want to display information to users, but you also want users to interact with your app.  To handle the double-tap event we will use the GestureDetector widget to respond to fundamental actions. To start off we will…

Read More Double-Tap on Image Example in Flutter

In this tutorial, you will learn how to remove the DEBUG banner in the Flutter app. If you run Flutter mobile application on an Android emulator or iOS simulator it will show a DEBUG label in the right side upper corner. Removing the DEBUG Banner The DEBUG label will be automatically removed when you build…

Read More How to Remove the DEBUG Banner in Flutter App