12,742 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
72
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
votes
0
answers
40
views
Keyboard cut off issue on iPhone 16 PRO
I have encountered a strange issue in my iOS app. When I open and play a video inside my app and then open the controller where there is an TextField, the keyboard is cut off on the right, as you can ...
1
vote
3
answers
59
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
89
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;
...
-1
votes
0
answers
27
views
I can't type shift + l in arch [closed]
all keys on my keyboard in key test works, but big l (shift + l) don't work. by the way, in virtual machine (tiny 10) shift + l works correctly.
filling space filling space filling space
retrying load ...
5
votes
1
answer
194
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
70
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
55
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
38
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
75
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
55
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
183
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
272
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 ...
0
votes
1
answer
78
views
Strange soft keyboard behaviour in Jetpack Compose for landscape mode
I have an AlertDialog that containing the TextField.
At portrait mode all working fine - the keyboard is closing with back gesture, but dialog becomes visible.
But at landscape mode, when I'm ...
0
votes
1
answer
46
views
resizeToAvoidBottomInset: true not working when using InteractiveViewer
Steps to reproduce
Create a Flutter project and replace the content of main.dart with the sample code provided above.
Run the app on a physical or virtual device.
Tap on the TextField at the bottom ...