Layout animation collision on Alert call with KeyboardAvoidingView
See original GitHub issueDescription
Calling Alert with focused TextInput (Keyboard is open) wrapped in KeyboardAvoidingView causes warning:
Warning: Overriding previous layout animation with new one before the first began:
{
duration = 250;
update = {
duration = 250;
type = keyboard;
};
} -> {
duration = 404;
update = {
duration = 404;
type = keyboard;
};
}.
And should input become focused after alert dismiss or not? Now i do it manually but in older versions seems it was automatically
Reproduction
https://rnplay.org/apps/5lB8-A
Additional Information
- React Native version: 0.36
- Platform: iOS 10
- Operating System: MacOS
Issue Analytics
- State:
- Created 7 years ago
- Reactions:43
- Comments:15 (2 by maintainers)
Top Results From Across the Web
KeyboardAvoidingView not Working Properly - Stack Overflow
This appears to be only a partial solution, although it works initially, if the android phone is locked on the screen with the...
Read more >Part 14: Using LayoutAnimation to manage keyboard context ...
Part 14: Using LayoutAnimation to manage keyboard context with forms with @notbrent. 2.6K views 5 years ago ReactEurope 2017 React Native ...
Read more >react-native-codegen | Yarn - Package Manager
Stop styles from being reset when detaching Animated.Values in old renderer (2f58e52006 by @javache); Revert "Fix TextInput dropping text when used as ...
Read more >Using the KeyboardAvoidingView in React Native
Learn how to use and implement the KeyboardAvoidingView in React Native via padding behaviour, height behaviour and position behaviour.
Read more >[Solved]-How to Use NSCoder with Versioned Classes
ios: how to detect user cancel dial a phone number · How to lengthen the UISearchBar in x direction with animation? · MapKit:...
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 FreeTop 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
Top GitHub Comments
Similar issue here
+1