react-native-form-builder icon indicating copy to clipboard operation
react-native-form-builder copied to clipboard

Picker iOS errror

Open mbs8 opened this issue 7 years ago • 1 comments

simulator screen shot - iphone 6 - 2018-10-31 at 10 18 53

I had this issue when tried to use the picker field, I think the error is in: picker/index.js#L27 on line 57

      <View
        style={Object.assign(styles.pickerMainIOS, {
          backgroundColor: theme.pickerBgColor,
          borderBottomColor: theme.inputBorderColor,
          borderBottomWidth: theme.borderWidth,
        })}
     >

It works fine like this:

      <View
        style={{...styles.pickerMainIOS, ...{
          backgroundColor: theme.pickerBgColor,
          borderBottomColor: theme.inputBorderColor,
          borderBottomWidth: theme.borderWidth,
        }}}
      >

mbs8 avatar Oct 31 '18 13:10 mbs8

I also got the same issue, and making the changes suggested above on Line 57 /src/fields/picker/index.js fixed it. Thank you @mbs8 !

angelalalachang avatar Apr 15 '19 20:04 angelalalachang