wix-incubator / react-native-keyboard-input

Use your own custom input component instead of the system keyboard
MIT License
819 stars 150 forks source link

iphoneX adaptive #59

Open giantss opened 6 years ago

giantss commented 6 years ago

2021532943293_ pic_hd

pribeh commented 6 years ago

That's the result of using a safeareaview. You could do not using safeareaview for that screen or add some negative margin for the text box (with Platform.OS === 'ios' && (height === 812 || width === 812) ?). Position absolute might work too.

littlehome-eugene commented 5 years ago

We have the same problem, we are not using safeareaview, and tried negative margin and position absolute.

Our code is at https://github.com/wix/react-native-keyboard-input/issues/71 Can you take a look? @pribeh

oferRounds commented 4 years ago

@giantss seeing the same problem, have you found a solution?