react-native-formik icon indicating copy to clipboard operation
react-native-formik copied to clipboard

withPickerValues stopped working on IOS

Open pzupan opened this issue 7 years ago • 0 comments

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.

pzupan avatar Jan 11 '19 20:01 pzupan