New Flutter Project wizard not showing on Android Studio 3.0.1

前端 未结 18 1995
南笙
南笙 2020-12-13 12:58

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 An

相关标签:
18条回答
  • 2020-12-13 13:08

    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
    0 讨论(0)
  • 2020-12-13 13:09

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

    0 讨论(0)
  • 2020-12-13 13:12

    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

    0 讨论(0)
  • 2020-12-13 13:14
    1. Yes first update all your plugins related to flutter and dart .
    2. "AndroidAPK Support" plugin(install /enable /update).

    3.This will work for all the AS , checked this on AS 3.4 also .

    1. Thanks to the guys who answered before me .
    0 讨论(0)
  • 2020-12-13 13:15

    Update flutter using below command

    flutter upgrade

    and again create flutter application from android studio

    0 讨论(0)
  • 2020-12-13 13:15

    Make sure you have flutter and dart installed, then enable Android apk support; this helped me

    0 讨论(0)
提交回复
热议问题