Danny Tuppeny
Danny Tuppeny
According to https://github.com/microsoft/vscode/blob/96bf637c101b8832e44a97a27a26305d8c2cf22e/src/vs/base/browser/dom.ts, `` looks like an allowed tag, so it may be possible to handle some videos in Flutter sources like this: ``` {@animation 464 192 https://flutter.github.io/assets-for-api-docs/assets/animation/curve_ease_in_out_cubic_emphasized.mp4} ``` https://github.com/flutter/flutter/blob/52b3dc25f6/packages/flutter/lib/src/animation/curves.dart#L1651...
Once https://github.com/dart-lang/ai/pull/308 gets into the Dart SDK and we have a version, we can use this to disable the Flutter tools when running in a Dart-only workspace. We need to...
Stats show that a huge portion of extension restarts are "configurationChange". Which indicates that one of the following settings changed: https://github.com/Dart-Code/Dart-Code/blob/35dfe98a1d0e2e5104431daaeb17753a3e76287d/src/extension/extension.ts#L837-L863 Some of the logs I've seen recently made me...
The Error_FlutterDaemonTimeout was added to understand how many users might be affected by https://github.com/Dart-Code/Dart-Code/issues/4840 which is the Flutter daemon not working properly for Windows users that have a version of...
Stats show that analysis server sessions are on average much shorter than expect (for example the duration of the analysis server process living is much lower than the duration of...
Debug adapters can now set `supportsCompletionsRequest` to provide completions in the debug console. If the Dart debugger can provide this info, it would be great to support.
When collecting coverage for Flutter, we collect it for all of the packages in the workspace (via `--coverage-package`). However that flag is not yet supported for Dart (see https://github.com/dart-lang/sdk/issues/60958#issuecomment-3528426345).
Splitting this from https://github.com/Dart-Code/Dart-Code/issues/5649 Currently we arbitrarily pick the first Flutter project when there are multiple in the project to show the preview for. This feels like a bad limitation...
It would be nice if we could run a Flutter web app embedded in an iframe inside the IDE so you can preview/work on your full app (and not just...
For new users wanting to try Dart out that don't have SDK in `PATH` the experience is a bit lame (the extension won't even activate). It would be nice if...