Danny Tuppeny

Results 1795 comments of Danny Tuppeny

I see the same issue, I'm unable to do anything on current master. I suspect this is the same issue in https://github.com/flutter/flutter/issues/160704 ?

My guess is that the (first) issue is this `uri.path` here: https://github.com/flutter/devtools/blob/6738316652b01c35ccd1630711e1b101b6694ac4/packages/devtools_app/lib/src/screens/deep_link_validation/project_root_selection/root_selector.dart#L120 Calling `.path` on a Windows file URI like file:///c:/foo will result in `/c:/foo` and not `C:\foo`. Generally we...

@CoderDake would that be any different to just passing the `windows` flag to `toFilePath()`?

@CoderDake I'm not sure I understand the example. If you change the last line to print `uri.toFilePath(windows: true)` it should return what we want (`C:\xxx\yyy`). Normally, the `windows` argument would...

![image](https://github.com/user-attachments/assets/ceaebbd8-efaa-4401-9827-282a9037314d)

@bkonyi `debugPrintStack()` and `print()` don't seem to print anything (even with `-v`) when using `--release`, however if I put `StackTrace.current` into a `Text()` to see its value, it's minified and...

Confirmed this is working now: ![Image](https://github.com/user-attachments/assets/7ea429a3-7d17-46da-8166-f1a32ec39597)

We use it to render a tree of dependencies for each package in the workspace, broken down by direct/dev/transitive (and in the tooltip we'll show the shortest path to a...

> Problem is that things have already changed in dart 3.5 - I think it is too late to revert this behavior. Are workspaces being advertised as ready for users...

> To me it seems slightly confusing that the output of `pub deps` depends on current folder, instead of giving a global view of the workspace. I think workspace info...