12,734 questions
1 vote
1 answer
70 views
Picker styles and dismissing keyboards
I have been looking at how to explicitly dismiss a keyboard while allowing a picker on the same form to actually work. There are already various solutions on here that solve my issue, and I have a ...
1 vote
1 answer
88 views
What to use instead of KeyboardEvent.keyCode for keyboard shortcuts across different layouts?
I have an application that relies on the deprecated keyCode property for keyboard shortcuts. I need to update my code to use a modern alternative that works consistently regardless of the user's ...
-1 votes
0 answers
76 views
React Native TextInput crash: NSInvalidArgumentException in RCTTextInputComponentView _selectionRange
Problem My React Native app crashes with NSInvalidArgumentException when navigating between screens that contain TextInput components. The crash occurs specifically when text is selected in one ...
1 vote
1 answer
75 views
How can I check if my iOS custom keyboard has Full Access enabled without opening the keyboard?
I'm developing a custom iOS keyboard extension, and I want to detect whether Full Access has been enabled — ideally without requiring the user to open the keyboard first. I understand that when Full ...
0 votes
1 answer
120 views
Adding style to a <button> makes it inaccessible from the keyboard
I have a front-end Angular app in which menu items need to be completely accessible through the keyboard. My problem is that I need to add some style formatting to the menu items - and I'm stuck ...
1 vote
3 answers
103 views
How do I move focus through a list with keyboard navigation using Refs?
I have an unordered list in a React app, and I want to be able to navigate through the list using down/up arrows. The list is rendered conditionally, based on whether a variable is null or not (the ...
1 vote
1 answer
113 views
How can I get global keystrokes without eating all the keys?
I have a basic input grabber which looks like this: Display *display = NULL; int main(const int argc, const char *argv[]) { display = XOpenDisplay(NULL); if (!display) { return 1; ...
7 votes
1 answer
529 views
Add gap to the keyboard toolbar
Since iOS 26, the toolbar on the keyboard isn't against the keyboard, there's a small gap as seen here on Safari: But in my app it shows up like this, without the gap: Here's my code: .toolbar { ...
0 votes
0 answers
76 views
Android keyboard stutters/freezes when opening/closing with react-native-keyboard-controller (KeyboardAwareScrollView)
I’m seeing noticeable UI hitches only on Android when the keyboard opens/closes while using react-native-keyboard-controller. On iOS everything is smooth — inputs scroll correctly, no dropped frames. ...
0 votes
0 answers
62 views
Lenovo M10+ gen 3 on screen keyboard issue
I have one of these tablets, just over 2.5 years old now. It came with Android 12 and was fine, then an auto-update forced it to 13, and it broke the on screen keyboard. What happens in practice is ...
0 votes
0 answers
48 views
Keyboard open animation not working with Samsung Keyboard and Jetpack Compose
I'm working on an Android Jetpack Compose app, and i've hit a strange bug that seems to be exclusive to Samsung Galaxy S25 Ultra and Samsung Keyboard. When I tap on a TextField on my Samsung Galaxy ...
1 vote
1 answer
86 views
TextField leaves white space above keyboard
I’m building a chat screen in Flutter, and I want my TextField (message input) to stay just above the keyboard when it opens. The problem: there is always a white space between the keyboard and my ...
0 votes
0 answers
63 views
How to properly lift any container on pressing the input bar in newer Android version and older version all devices? (KeyboardAvoidingView)
Very simple question. I have a Pixel 6a. The code shown below works everywhere except the physical Pixel 6a (on Android 16). The code works on Redmi note 11 which has Android 11 and on an emulator ...
1 vote
3 answers
196 views
Reducing Latency in Pixel Scanning for Input Simulation
I am developing a Python script to pass a challenging minigame in a single-player title. My goal is to unlock a specific achievement within this game, a task I've spent over 10 hours attempting ...
1 vote
2 answers
648 views
SwiftUI .toolbar(placement: .keyboard) not showing buttons on first appearance (iOS 18)
Background I'm building a SwiftUI form (AddRecipeView) inside a NavigationStack. I’ve added a .toolbar(placement: .keyboard) with a “Done” button to dismiss the keyboard, especially useful for ...