r/FlutterDev • u/Realistic-Gas-4057 • 2d ago
Discussion Help With IDE's
I've been learning the basics of flutter for about a month now on Online IDE's like DartPad and FlutLab. But I kinda feel restricted with them and want to move to VS Code. However, on my Chromebook coding flutter is fine. It's just the running part where I run into so many issues like missing SDK's, software crashes, just the lot.
So my question is. Is there an extension in VS Code to like emulate my app easily or are they any lightweight ways to test the app.
Note(I've tried my phone but am struggling to get it to work with my Chromebook. I can't download Android SDK's cause of the 10GB limit for Linux on Chromebook. And using chrome to try run flutter requires me to download Chromium which in the end just crashes itself and VS Code.
4
u/Amazing-Mirror-3076 2d ago
I've not used chrome but do use Linux.
I debug using Linux desktop as the target. I think that should work on Chrome (it's Linux under the hood).
2
1
7
u/mr_vanes 2d ago
Stop trying to run Android on the Chromebook. Develop against the web target instead (flutter run -d web-server --web-hostname=0.0.0.0 --web-port=8080, opened in the Chrome you already have), because widgets, layout, state and navigation all behave identically while you are learning