Don't set height to avoid clipping textinput for XHRExample on android
Summary: When adding fields to the multipart/form-data Upload section the two `TextInput` fields have a height set that is causing them to be clipped on my Nexus 5 (5.1.1) like so: ![screenshot_2015-09-15-16-50-41](https://cloud.githubusercontent.com/assets/362769/9889808/485a080c-5bca-11e5-9858-6aa51823928b.png) I've removed the height property, so now it looks like: ![screenshot_2015-09-15-16-50-22](https://cloud.githubusercontent.com/assets/362769/9889806/484f416a-5bca-11e5-9a54-255f0cfc1051.png) Closes https://github.com/facebook/react-native/pull/2730 Reviewed By: svcscm Differential Revision: D2789188 Pulled By: androidtrunkagent fb-gh-sync-id: 4a9ec9bc88d6af8f1db1a6208f138ff05f4eb392
This commit is contained in:
parent
308612314e
commit
36d26c7d3b
|
@ -320,7 +320,6 @@ var styles = StyleSheet.create({
|
|||
borderRadius: 3,
|
||||
borderColor: 'grey',
|
||||
borderWidth: 1,
|
||||
height: 30,
|
||||
paddingLeft: 8,
|
||||
},
|
||||
equalSign: {
|
||||
|
|
Loading…
Reference in New Issue