Matej Knopp

Results 182 comments of Matej Knopp

Should be fixed by https://github.com/nativeshell/nativeshell/commit/869b4a834340810a30455a5964bd242660be7c95. You can try to specify the revision in your pubspec.yaml to see if it works for you.

I'm not sure if there is easy way to get a `NSMenuItem` for sharing or whether we'd need to do it "from scratch" using `NSSharingService`.

By default the cargo build doesn't build self-contained bundles. There is [bundle_tool](https://github.com/nativeshell/bundle_tool) project that you can install using ``` cargo install bundle_tool ``` and which can create self contained bundles...

Assuming you did cargo `build --release` and the bundle name is `Qtalk.app` ``` cargo bundle-tool -v macos-bundle target/release/Qtalk.app target/ ``` This should create `Qtalk.app` bundle in the target folder that...

Where are you running this? You need to run everything in the project directory. ``` cargo clean cargo build --release cargo bundle-tool -v macos-bundle target/release/Qtalk.app target/ ``` This should create...

This is quite a bit problematic. On MacOS, you can get transparent windows already using `window.setStyle(frame:windowFrame.noFrame)`. But generally there is no click through on Mac. I think it could be...

I'm not quite sure what you mean. You can still use `Scaffold` if you put it inside `WindowLayoutProbe`, i.e. ``` WindowWidget MaterialApp WindowLayoutProbe Scaffold ```

To be honest I haven't tried `LayoutProbe` outside of `Scaffold`. It is quite possible that it won't work due to scaffold having some widgets that will not work in unconstrained...

Generally file associations are registered in Info.plist file. There's quite a bit of documentation about this online. However handling the file open notification will require some rust code right now....

I'll try to find some time to make a working example of this.