Conversation

Your input fuels progress! Share your tips or experiences on prioritizing mental wellness at work. Let's inspire change together!

Join the discussion and share your insights now!

Comments 0

Sharpen your coding skills—try JavaScript challenges on TOOLX now!

advertisement

Installation of Flutter in Andriod Studio

flutter in andriod studio


Before setting up Flutter, one must ensure some system requirements are in place specific to Operating Systems.

Following is the link to learn more about the system requirements: https://docs.flutter.dev/get-started/install

Once the requirements are met, the developer has to download the Flutter SDK using the following link:

Windows: https://docs.flutter.dev/release/archive?tab=windows

After downloading the SDK for Flutter, the next step is to set the SDK Path which is automatically done while installing the SDK for Flutter.

Then, set up an editor to install and run Flutter Apps.

Flutter apps can be built with any text editor that has command-line tools.

However, officially, the Flutter team suggests using the following editors:

  • Android Studio and IntelliJ
  • Visual Studio Code
  • Emacs

Android Studio is one of the widely used IDEs for developing Flutter applications.

Install Android Studio - Windows

Once the system requirements are met and the Flutter SDK is set up, the developer has to follow the steps provided.

  • Step 1: Download Android Studio using the following link: https://developer.android.com/studio

  • Step 2: Accept the license and click Download. Wait for the file to download.

  • Step 3: Go to the location where Android Studio is downloaded.

  • Step 4: Double-click the exe file. Wait for the launcher to show up and click 'yes' to reveal the Android Studio Setup screen.

  • Step 5: Click Next. Once done, the setup wizard will ask you to choose components. Select the default options that are pre-checked and click Next.

  • Step 6: The subsequent step is to choose the location where Android Studio is to be installed.

  • Step 7: After selecting the right drive, choose the Start Menu Folder or shortcut and click Install.

  • Step 8: Once the installation is completed, click Next to finish.

  • Step 9: Finally, click Finish and start Android Studio.

  • Step 10: Once the installation process is complete, set up SDK Manager.

  • Step 11: Once done install the plugins - Flutter and Dart.

  • Step 12: Press Restart IDE to relaunch the IDE once the plugins are downloaded.

Now, Flutter is ready to be used in a project/application. Use File -> New -> New Flutter Project to create a new project.


Flutter Flutter installation Flutter in Android Studio install Flutter

advertisement