Matej Knopp
Matej Knopp
Are you using the published rust crate or current main? I think the published rust crate is outdated and does not support extracting debug URL format in Flutter 3 from...
Not sure I see much point in this. It's hard to say for sure because rid source code is not public, but I am under the impression that it uses...
Currently blocked on: - https://github.com/flutter/engine/pull/24916 - https://github.com/flutter/engine/pull/27522
So, the problem is here (missing move): ```rust let texture = Capsule::new(texture); thread::spawn(move || { loop { // decoding runloop_sender.send(|| { //
Try setting the `MACOSX_DEPLOYMENT_TARGET` environment variable before the build.
I think it would be possible to make a stripped down version of nativeshell for mobile which would contain things like interfacing with platform channels, so that it would be...
This might be a linux specific issue. I'll look into this.
This seems like a bug. A minimal reproducible example would help. However if you need to update menu, just store the menu instance (that you set as window menu) and...
`menu.update()` definitely should update the menu. If it doesn't for any reason it is a bug. If you can provide any code that I can use to reproduce the problem...
Thank you for the snippet. I was able to reproduce the problem. The issue is that NativeShell doesn't detect change from enabled to disabled, so it doesn't update the menu....