Bounce on Focus (Disabling Animation)
See original GitHub issueIs there anyway to disable the animation and directly jump to the focused input? When I use the nextKey to focus next input the animation jumps up and down.
I tried to change this in library with no luck:
scrollToPosition: function (x: number, y: number, animated: bool = false) {
const scrollView = this.refs._rnkasv_keyboardView.getScrollResponder()
scrollView.scrollResponderScrollTo({x: x, y: y, animated: false}) // disable animation
},
May be related to: https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues/82
Issue Analytics
- State:
- Created 7 years ago
- Comments:12
Top Results From Across the Web
How to Disable the Focus Ring Animation in Mac OS X
Open Terminal as usual and enter the following defaults command string to disable the focus ring animation throughout Mac OS X:.
Read more >How to Disable Animations in Windows 10 - wikiHow
1. Open the Settings app. Press the Start button in the lower-left corner of your screen and select the settings gear.
You can also...
Read more >How to disable Microsoft Edge bouncing animation when ...
Go type "edge://flags" into the URL box and press enter. This will turn off bouncing animation on web pages in the browser.
Read more >Accessible Web Animation: The WCAG on Animation Explained
More specifically, it states: Motion animation triggered by interaction can be disabled, unless the animation is essential to the functionality ...
Read more >Accessibility in Practice: Animated Content
In this Accessibility in Practice, we explore the best ways to handle animated content for all users.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I was able to fix this by adding blurOnSubmit={ false } to all of my inputs.
Please use
v0.2.7
and test again your issue.