After upgrading to react-native 0.61 i get a lot of warnings like that:
VirtualizedLists should never be nested inside plain ScrollViews with the same orient
So I faced the same problem while using a picker-based component inside and the one thing that helped me solve the problem was adding keyboardShouldPersistTaps={true} inside the as a prop.
keyboardShouldPersistTaps={true}
This is my code snippet.