How To Download Flutter Plugin For Android Studio

InstallStudio

Sep 26, 2018  I personally believe that Android Studio is a bit too heavyweight for most Chromebooks, even the Pixelbook, but if it’s your preference to use it for Flutter, you’ll need the Flutter Android. Step 2: Open the repository in Android studio. I will presume that you already have the Flutter plugin and SDK installed in your Android Studio. Open Android Studio and go to File Open or Open Existing Android Studio Project. Step 3: Normally, here, Android Studio start loading the Flutter project automatically.

  1. Mar 29, 2018  Once the Plugin installation is done, it will show you a message to restart Android Studio after restart and Start a new Flutter Project will appear on the welcome screen just like the following screen shot. Flutter with Android Studio is installed in your Machine. Follow next few steps to run the default project template code now.
  2. The Steps to add Flutter Plugin in Android Studio and creating New Flutter Project are exactly the same as in Windows. After Finishing the project creation Wizard the IDE screen with default code will be the same as Windows.
  3. Apr 02, 2019  Installing Flutter on Windows using Android Studio Step by Step Tutorial admin April 2, 2019 April 2, 2019 Flutter Installation Flutter is an open source android iOS mobile application development platform created by Google in DART programming language.
  4. It also has the ability to transform the experience from one platform to another by changing the behavior of the scroll, buttons, sliders, dialog boxes, and switches, among others, from the Android Material Design standards to the Cupertino iOS. Install Flutter Plugin in Android Studio. Preferences - Plugins - Browser Repositories.
28 Mar 2018CPOL

Android Studio Install Flutter Plugin

In this article, we will setup Flutter development environment in Android Studio and execute the default code generated by the New Flutter Project template.

Introduction

Android Studio Dart Plugin

Flutter is Google’s mobile UI framework for crafting high-quality native interfaces on iOS and Android. As per official flutter documentation, it’s a modern reactiv framework (keyword being reactiv) to develop cross platform native mobile apps using single code base. Acer model t77h462 user manual. Even though Google doesn’t say this, but many people from developer community are considering this as Google’s reply for Facebook’s React Native and Microsoft Xamarin.Forms.

In this article, we will setup Flutter development environment in Android Studio and execute the default code generated by the New Flutter Project template. I am using Android Studio so that existing Android developers can easily start working on this, however according to Flutter documentation, there are plugins support available for Visual Studio Code and Jetbrains IntelliJ IDEA IDEs also.

Official Installation Documentation (Read for Hardware Requirements)

This blog is the simplified version of official installation documentation focused on setting up the environment with respect to Android Studio.

Installation Steps on Windows

Since most of the developers in India use Windows Machine, we will start with Windows installation steps first, however please keep in mind that you will only be able to get Android output when using Windows machine as Mac machine with xCode is required for iOS development

  1. Download and install Android Studio.
  2. Install Git for Windows with the Use Git from the Windows Command Prompt option enabled during installation.
  3. Open Command Prompt by either writing cmd in Run window or by using Start Menu like Start=> Windows System => Command Prompt (in Windows 10)
  4. Get Flutter SDK : write and execute following code in terminal window:

    You will get the following screen showing progress of installation:

  5. After executing the above command, Flutter will be downloaded in the folder where you have executed the command, which is your current logged in user folder. Now, in order to run Flutter Commands, we would need to setup the PATH environment variable for current user by following these steps:
    • Go to “Control Panel > User Accounts > User Accounts > Change my environment variables”, you will get the following screen:
    • Under “User variables”, check if there is an entry called “Path”, In most of the cases (like mine), it’s there so Select it and Click Edit to open the below given Window and edit it or else Click on New to create this Variable and give the Path of Flutterbin folder as highlighted:
  6. Restart Windows to fully apply this change.
  7. Now open Command prompt again and execute flutter doctor command which will check your environment and displays a report to the terminal window like below screenshot, also it will show the errors, like in my case it’s asking me to install Android SDK and Android Studio (as I missed installing it earlier).
  8. Keep on executing the commands mentioned in result of flutter doctor (and believe me, there will be many as Flutter is still in Beta and all of the installations are done via command prompt) until you get the following message which says that flutter installation is all ok.
  9. Now Open Android Studio. On the welcome screen, click on Configure => Plugins as shown in the below screenshot:
  10. On the Next screen, click on Browse button as highlighted in the following screenshot:
  11. Now on browse screen, search for Flutter by typing same in the Search Bar and click Install button like the following screenshot:

    This will ask to install Dart also as Flutter is dependent on Dart. Select Yes for that dialog and install both.

  12. Once the Plugin installation is done, it will show you a message to restart Android Studio after restart and Start a new Flutter Project will appear on the welcome screen just like the following screen shot.

    Congratulations! Flutter with Android Studio is installed in your Machine. Follow next few steps to run the default project template code now.

  13. On Welcome screen, click on Start a new Flutter Project and you will get the following screen to select the Flutter project type. By default, Flutter Application will be selected which is used to create Flutter mobile app so just click on Next button.
  14. Enter the name of the project (in all small letters), location of the project, description (if you want) and click Next button.
  15. On Next and final screen of new Flutter project wizard, enter the company domain name in order to set the package name of application and click Finish button.
  16. After finishing the project creation Wizard, the IDE screen with default code and the toolbar will show connected devices or Emulator along with Run button as highlighted in the below screen:
  17. This is the output when you click Run button to execute default code on Android device:

Installation Steps on Mac

  1. Install Xcode 7.2 or newer (via web download or the Mac App Store).
  2. Download and install Android Studio.
  3. Open Terminal window either by using programs or searching it.
  4. Get Flutter SDK: write and execute the following code in terminal window:

    You will get the following screen showing progress of installation:

  5. Once the above step is complete, add execute following command to add Flutter tool to set local user PATH variable temporarily, for the current terminal window:
  6. Execute $PATH command again which will show the list of all paths mentioned in $PATH variable and the path of your Flutter installation will be added to it like the highlighted section in the following screen:

    Take a screenshot of this path or note it down at some place where you can refer to it again.

    Now execute flutter doctor command which will check your environment and display a report to the terminal window like the below screenshot, also it will show the errors in bold like in my case it’s asking me to upgrade flutter and install Brew (highlighted).

  7. Keep on executing the commands mentioned in result of flutter doctor (and believe me, there will be many as Flutter is still in Beta and all of the installations are done via command prompt) until you get the following message which says that flutter installation is all ok.
  8. The steps to add Flutter Plugin in Android Studio and creating New Flutter Project are exactly the same as windows.
  9. After finishing the project creation Wizard, the IDE screen with default code will be same as windows. The toolbar will show connected devices or Emulator along with Run button same as windows, however if you click on the drop-down arrow of devices option, you will get an option to start the iOS Emulator and other Android Emulator like the below screenshot:
  10. This is how the Output of default code looks like in iPhone and Android when executed:

This was a simple step by step guide to install Flutter with Android Studio on Windows and Mac. This is just an introduction and I will be coming up with more blogs on developing Cross Platform Mobile apps using Flutter.

Please remember that Flutter is still in Beta and some options /commands may change as the framework evolves with time, so if you face any issue, just check Flutter Official Documentation.

Happy coding!

References

Dart Android Studio