Debug School

rakesh kumar
rakesh kumar

Posted on

How to Resolve Missing Flutter Option in Android Studio

ERROR
Inside tools->flutter option is missing

Image description

If the Flutter option is not available in the Tools menu of Android Studio, it usually means that the Flutter and Dart plugins are not installed or not configured properly. Here are the steps to resolve this issue:

  1. Install Flutter and Dart Plugins Open Plugin Settings:
Go to File -> Settings (or Preferences on macOS).
Enter fullscreen mode Exit fullscreen mode

Search for Plugins:

In the Settings/Preferences dialog, select Plugins from the left pane.
Click on the Marketplace tab.
Install Flutter Plugin:

In the search bar, type Flutter.
Locate the Flutter plugin in the search results and click Install.
Install Dart Plugin:

The Dart plugin is usually installed automatically with the Flutter plugin. However, if it's not, search for Dart and install it as well.
Restart Android Studio:

After installing the plugins, you will be prompted to restart Android Studio. Click Restart IDE.

Top comments (0)