This video shows the steps to create a simple Flutter App which can be run across platforms such Android, Web, windows Desktop and iOS. In this demo it shows the application by running the application on Android phone emulator and Chrome web browser. I hope you like this video. For…
Tag: Flutter
What to do when Flutter App stuck at “Running Gradle task ‘assembleDebug’… ” in Android Studio?
This situation may happen during the first Flutter App run. It is because gradle file may not be correct and needs to be cleaned and rebuild. Simply run below command in your Android Studio Terminal at $Project\Android folder: ./gradlew clean build Please note, in the above Android Gradle plugin requires…
How to install flutter (SDK) in your Windows OS and use it in Android Studio IDE?
Flutter is a tools to create and develop Apps for different platforms, such as Android, iOS, Windows, etc., using the same code base. Flutter supports many IDEs and editors such as Eclipse, Visual Studio, EMACs and Android Studio. In this page we will see how to install flutter (SDK) for…
How to install flutter (plugin) in your Android studio development environment?
Flutter can be used to develop Apps for different platforms, such as Android, iOS, Windows, etc., using same code base. Flutter supports many IDEs and editors such as Eclipse, Visual Studio, EMACs and Android Studio. In this page we will see how to add flutter as a plugin in your…