Open jtkeyva opened 1 month ago
The good point, I need to add keyboard case to the example, will do it soon
awesome i look forward to it! this really is great stuff you are doing, thanks
I also look forward to it meanwhile I'll invent some kind of workaround. For the completness of this thread I want to report what I'm exactly doing on the Flutter side.
The widget looks like this:
TextField(focusNode: widget.textFieldFocus, ...)
I'm pressing the select
button on AppleTV. It's correctly recognized and pushed as an event. The event gets picked by FocusableActionDetector
. Inside the detector, i'm calling:
widget.textFieldFocus.requestFocus();
The keyboard does not show and XCode prints the error:
UITextInputSessionActionAnalytics is nil
Hello, this is raelly great what you have done. I cannot figure out how to invoke the native keyboard (the strip of letters). I tried some swift stuff but no luck. Any help greatly appreciated.