New Flutter Project wizard not showing on Android Studio 3.0.1

I installed Flutter following official document and also installed Flutter and Dart plugin on Android Studio.

But, I can't see File>New Flutter Project wizard on Android Studio 3.0.1

I run "flutter doctor" command. See the below output.

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.1.5, on Mac OS X 10.13.3 17D102, locale en-TR)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)
[✓] Android Studio (version 3.0)
[✓] IntelliJ IDEA Community Edition (version 2017.3.3)
[!] Connected devices
! No devices available

! Doctor found issues in 1 category.


I have also same problem.but what can you do in that situation is Just create the project with command line :


flutter create your_app_name


Now open android studio and open that project. Hope this works well

Got the same problem, fixed it by installing dart first using the plugin manager of android studio. Then install flutter plugin.

This worked for me. Install Dart and Flutter manually from Plugins:


Open Plugins (For Mac: Configure -> Plugins OR Android Studio -> Preferences -> Plugins)
Search for Dart -> Search in repositories -> Install -> Restart Android studio
Search for Flutter -> Search in repositories -> Install -> Restart Android Studio


For some reason, Flutter refused to show New Flutter Project in android studio 3.1

but when I use android studio 3.2 it works fine after installing Dart and flutter plugins.

How to set flutter wizard in Android Studio 3.0


File > Close Project
Configure > Check for Updates
You will find Flutter and Dart updates. Update and Restart. Downloading Patch.
File > New Flutter Project or Select new Flutter Project.


Hope your problem resolved.
Happy Codings!!

Update flutter using below command


flutter upgrade


and again create flutter application from android studio

I've got the same problem and finally sorted out. It's usually caused by your upgrade of Android Studio from 2.x to 3.x at the same time.

In short, it's because Flutter is not correctly configurated, but behind the scene there might be different reasons, so the universal solution is to run flutter doctor -v to diagnose and see what's missing.

[First make sure you've already followed the setup steps in Flutter's official documentation and have your Android SDK updated.]

In my own case, a couple of things to fix:


Update the JAVA_HOME path in .bash_profile. Because I have 2 Java versions installed and so I updated it to use the same as Android Studio does. This is critical as flutter doctor relies on Java to check some of your configurations.
Some Android licenses not accepted - follow flutter doctor's advice to accept all licenses.
Android Studio's Flutter plugin version too low - simply update it.

Comments

Popular posts from this blog

Meaning of `{}` for return expression

Get current scroll position of ScrollView in React Native

flutter websocket connection issue