react-native-formik
react-native-formik copied to clipboard
withPickerValues stopped working on IOS
The picker no longer opens for me on IOS. It still works as expected on Android. I can see the KeyboardModal is called if it is IOS at line 47 of PickerModal.js when the Platform is IOS.
It appears that this issue is related to a wrapper I've placed around the App. In order to disable the Expo logger in terminal, I'm calling Logs.disableExpoCliLogging and then
const AppEntry = () => {
const App = require('./App').default;
return <App />;
};
registerRootComponent(AppEntry);
If I use the default entry node_modules/expo/AppEntry.js the picker modal works on IOS.