Danny Tuppeny

Results 1798 comments of Danny Tuppeny

Sorry for the delay - I'd have to do some testing to see if such a workaround would work (it's possible we're blocked from _reading_ the clipboard). I'm not certain...

I did some testing of this today, but so far it's not looking like we can fix this. I was able to capture pastes in the parent page and postMessage...

Seems like this would be set at https://github.com/flutter/devtools/blob/master/packages/devtools_app/web/index.html#L26 Can you test if you see the same if you run `devtools_app serve`? (that's basically what Dart-Code is doing when you set...

Oops, I didn't notice the thing I linked had a different name (I fond it via a PR so maybe it was renamed). There's nothing in Dart-Code that tries to...

Copying using the copy button has recently been fixed by @CoderDake but wasn't included in the latest stable release - https://github.com/flutter/devtools/pull/6598 Copying with Cmd+C is indeed broken and needs some...

@brianquinlan I think this is the cause for some flaky tests in the debug adapter (https://github.com/dart-lang/sdk/issues/55313). I see you reverted your most recent change so I wonder what the current...

The Flutter sidebar in VS Code is failing with what seems like the same error: https://github.com/Dart-Code/Dart-Code/issues/5049 The sidebar (part of Flutter DevTools) is hosted inside a sandboxed iframe in VS...

@srujzs you can repro this using VS Code and Flutter master (just try to load the Flutter Sidebar), but it's probably not very easy to debug that way (however I...

I tried all of these, but no change: ```dart final parent = window.parent; if (parent != null) { parent.postMessage(message.jsify(), targetOrigin.toJS); } ``` ```dart (window.parent as JSObject?) ?.callMethod('postMessage'.toJS, message.jsify(), targetOrigin.toJS); ```...

Oh by the way, you can get at the source from your Flutter SDK checkout (be on master, not stable): `flutter\bin\cache\dart-sdk\bin\resources\devtools\main.dart.js` (let me know if I should move this to...