Bruno Leroux
                                            Bruno Leroux
                                        
                                    For a determinate `CircularProgressIndicator`, it might be problematic to allow stroke cap customization. For instance, allowing `StrokeCap.square` will make the indicator start with a value that seems to be negative...
> So should I change the default to be `StrokeCap.butt` instead of `StrokeCap.square` I think it would be better to keep the current logic which is to use `StrokeCap.butt` for...
In code sample from https://github.com/flutter/flutter/issues/109150#issuecomment-1209217318, the `Column` is only wrapped in a `PreferredSize` widget. As stated in `PreferredSize` documentation: “This widget does not impose any constraints on its child” so...
FYI, I don't have this issue on Linux : ` [✓] Flutter (Channel master, 2.6.0-12.0.pre.218, on Ubuntu 20.04.3 LTS 5.4.0-88-generic, locale fr_FR.UTF-8) `
@yjbanov It's the first time I filed a PR with a golden file change and I don't have the access rights to validate the golden file. Can you do it...
Comments in https://github.com/flutter/flutter/issues/27189 are very informative and still relevant. I tried the following dirty hack in ```Dart-Code/src/debug/dart_debug_impl.ts -> setBreakPointsRequest ``` : ```typescript if (uri === "dart:core/print.dart") { uri = "org-dartlang-sdk:///sdk/lib/core/print.dart";...
I fully agree with you @DanTup : when I wrote "URIs should be converted before calling VM Service addBreakpointWithScriptUri RPC", I described the issue not what should be done to...
@bkonyi Yes, breakpoint resolution is a pain :sweat_smile: I'm digging in the VM code and it seems there are some inconsistencies in Script URLs resolution. When done with my investigation...
After several days of digging (well worth it, as I learned many things: building a custom Dart SDK, building a custom Dart Code, playing with Dart VM C++ code, and...
Hi @DanTup , I agree with your concern with shipping this. I think that people really interested by this will be able to use my PR to build a custom...