周诚

Results 6 issues of 周诚

You can see the video here: https://user-images.githubusercontent.com/54197427/210780282-4d891f64-c732-4bed-8344-a84780214438.mp4 I am sure that it is the issue of CodeSnap instead of Visual Studio Code because this problem doesn't appear when I close...

如果快捷键和输入框出现冲突会出现无法在输入框输入的问题: 比如快捷键设置为空格,那么在所有的TextField中都无法输入空格 先前的版本^0.1.8相反,会出现既能输入又会执行快捷键 现在可行的办法是使用^0.1.8版本,根据焦点判定是否执行快捷键方法: ```dart await hotKeyManager.register( toggle, keyDownHandler: (hotKey) { if(!textController.hasFocus){ // 执行快捷键指令 } }, ); ``` 希望可以在输入的时候判断是否触发快捷键,或者添加回掉函数判断是否要执行快捷键绑定的操作

### Environment macOS 14.2 Intel based Flutter 3.16.9 ### Here's the issue: I set the `MainFlutterWindow.swift` file as below: ```swift import Cocoa import FlutterMacOS import bitsdojo_window_macos class MainFlutterWindow: BitsdojoWindow {...

### Steps to reproduce Just use the default empty Application template and debug (or release) ### Expected results Fully loaded to show the window, and I don't want to see...

platform-mac
a: desktop
has reproducible steps
P2
found in release: 3.16
found in release: 3.20
team-macos
triaged-macos

I find it will trigger error when use new version of `file_picker` on macOS. I find the way to solve it through adding this ``` com.apple.security.files.user-selected.read-write ``` to `DebugProfile.entitlements` and...

suggestion
macos

Improve README document #1783