I am new-ish to flutter. I have a new computer and a fresh installation of VS code and the flutter and dart extensions. At the moment I don't have android studio or SDK tools, I am only testing Windows application. I have visual studio 2019 with C libraries installed as required. I created a very simple app. Visual Studio 2019 provides on-demand formatting for a code file, including code style preferences, through the Code Cleanup feature. To run Code Cleanup, click the broom icon at the bottom of the editor, or press Ctrl + K and Ctrl + E.
Visual Studio Code offer great experience in text editor just like IDE. Flutter is the next generation easy app development framework for mobile apps (Android and iOS), desktop app, and web apps. Here some extension in Visual Studio Code that is useful for cross platform application development with Flutter Framework. This pack include extensions, git tools, todo list tools, recommended selection of themes and icons, and some utilities..You can select or disable some extension in this pack, so it can run as depend on your needs.
Here are some useful extension included in this packs :
Waka Time included in this extension pack. If you want to use Waka Time, you need free register in their website, and put API Key that needed in Waka Time Extension. You can read more details at their developer page.
Extension in this pack will be updated, added, or reduced, if future development for those extensions changed. If you don't like some extension in this extension pack, you can just disabling that extension in Extensions Menu, select extension you want to disabled, click Gear Icon, and choose Disable.
You can review what is changed every release by looking at Changelog File.
If you failed to install or update this extension pack. Try removing it first by uninstall this extension pack or remove all extension from your VS Code. And then try reinstalling this extension pack again. Don't forget to use reliable internet connection too.
Enjoy The Packs!
Ask questionsDebug build fail
I am new-ish to flutter.I have a new computer and a fresh installation of VS code and the flutter and dart extensions.At the moment I don't have android studio or SDK tools, I am only testing Windows application.I have visual studio 2019 with C++ libraries installed as required.
I created a very simple app.The app runs with no issues when running 'flutter run -d windows' from the terminal.However, I wanted to debug with breakpoints, so, when trying run->debug I get the fallowing error messages:
here is flutter doctor:PS C:WindowsSystem32WindowsPowerShellv1.0> flutter doctor -v[√] Flutter (Channel stable, 2.0.3, on Microsoft Windows [Version 10.0.19042.870], locale en-US)• Flutter version 2.0.3 at C:flutter• Framework revision 4d7946a68d (12 days ago), 2021-03-18 17:24:33 -0700• Engine revision 3459eb2436• Dart version 2.12.2
[X] Android toolchain - develop for Android devicesX Unable to locate Android SDK.Install Android Studio from: https://developer.android.com/studio/index.htmlOn first launch it will assist you in installing the Android SDK components.(or visit https://flutter.dev/docs/get-started/install/windows#android-setup for detailed instructions).If the Android SDK has been installed to a custom location, please useflutter config --android-sdk
to update to that location.
[√] Chrome - develop for the web• Chrome at C:Program FilesGoogleChromeApplicationchrome.exe
[√] Visual Studio - develop for Windows (Visual Studio Community 2019 16.9.0)• Visual Studio at C:Program Files (x86)Microsoft Visual Studio2019Community• Visual Studio Community 2019 version 16.9.31025.194• Windows 10 SDK version 10.0.19041.0
[!] Android Studio (not installed)• Android Studio not found; download from https://developer.android.com/studio/index.html(or visit https://flutter.dev/docs/get-started/install/windows#android-setup for detailed instructions).
[√] VS Code (version 1.54.3)• VS Code at C:UsersnirgAppDataLocalProgramsMicrosoft VS Code• Flutter extension version 3.20.0
[√] Connected device (3 available)• Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.19042.870]• Chrome (web) • chrome • web-javascript • Google Chrome 89.0.4389.90• Edge (web) • edge • web-javascript • Microsoft Edge 89.0.774.57
! Doctor found issues in 2 categories.PS C:WindowsSystem32WindowsPowerShellv1.0>
Hope someone can help.Thanks