All Questions
Tagged with flutter visual-studio-code
1,751 questions
-1
votes
0
answers
47
views
Trying to run my Flutter app on my android studio emulator and constantly get the error [closed]
This is my code for my flutter app that im coding on vscdoe:
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'firebase_options.dart';
import 'package:...
0
votes
0
answers
14
views
VScode cannot find Nox
I am really new to flutter and simulators. Does anyone know why my vscode cannot find nox?
There exists similar topics.
Flutter VSCode and Nox Emulator wont Connect
how i can connect nox with vscode ...
1
vote
1
answer
56
views
Flutter Application Stucked for long time and does not open my application
I tried to run my flutter application in both Android emulators and Microsoft Edge browser with Terminal and debugging mode.. But its not working and stuck for a long time..
Previous times it works ...
1
vote
0
answers
53
views
my first flutter application - getting build failure exception unable to delete directory
I am trying to run my first flutter application. Followed instructions word by word as per the google https://codelabs.developers.google.com/codelabs/flutter-codelab-first#2
I have selected the target ...
0
votes
0
answers
19
views
Flutter: TLS Error When Installing Packages from pub.dev (macOS)
I'm having this error whenever I'm trying to install new package on my flutter based application.
Got TLS error trying to find package XYZ at https://pub.dev
I found a few similar questions, but they ...
0
votes
0
answers
37
views
Running flutter on Mac with VS Code and iPhone16 Pro Simulator from XCode
My iPhone-16 Pro simulator works and builds the Flutter app. I'm running the terminal from VS Code, and it recognizes the simulator and XCode. However, when I try to change a colour and do a hot ...
0
votes
0
answers
42
views
Target of URI doesn't exist (importing dart files) in VSCode Windows
I run the following code:
import 'pages/home_page.dart';
import 'pages/pages.dart';
import 'package:app/setup.dart';
import 'setup.dart';
The last 3 have red error lines, and the error:
Target of URI ...
0
votes
0
answers
82
views
Error resolving plugin [id: 'dev.flutter.flutter-plugin-loader'] in settings.gradle.kts
I have been stuck on this error for a while now while working on my flutter app, and there have been no open threads on Stack overflow that answer this question yet. The project works fine from ...
0
votes
0
answers
45
views
Flutter doctor found issues in 2 categories
I have tried some methods that I found in here, stackoverflow, regarding my troubles but none worked. If any of you could help me it would be really helpful. So here's the doctor summary:
[Flutter ...
1
vote
0
answers
27
views
importing COLOR SCHEME from Android Studio to VSCode
I'm used to coding in Flutter with Android Studio.
Recently, I discovered Cursor (which is built on top of VS Code) and want to switch to it.
However, I'm having trouble replicating my old color ...
-1
votes
2
answers
49
views
My app in Dart is not able to select languages properly
I hope you can help me. I am developing an app in Dart with Flutter from Visual Studio.
I've added some languages and in one language I'm getting the following error, the rest works correctly. I have ...
2
votes
2
answers
397
views
VSCode Flutter disable auto remove trailing comma at format
I've changed my PC and install VSCode with Flutter and I found out that formatter is auto remove trailing comma and line break if that line is not over the rulers.
like:
Something( ...
2
votes
2
answers
198
views
Flutter hangs on "Initializing the Flutter SDK. This may take a few minutes" after VS Code restart and executing the Flutter upgrade
Last night, I tried to update my Flutter SDK from 3.27.2 to 3.29.0.
I got an exception telling me that it couldn't upgrade Flutter SDK because there's another program using it (apology to not bring up ...
1
vote
1
answer
145
views
Android Studio's auto complete is extremely slow in Flutter
Every now and then Android Studio's auto complete became slow and unresponsive, please check attached image, it's loading for a while and usually responds with no result.
There is same problem in ...
0
votes
1
answer
45
views
Unit testing Python Firebase Cloud Functions in Flutter and VS Code - can't get the modules to import
I have a Flutter project that has Firebase enabled with cloud_functions. It has created a functions directory in the root of the Flutter project.
Project Structure
my-app/
├─ lib/
├─ ios/
├─ functions/...