Open laranicolas opened 6 years ago
I have the same issue.
React-Native: 0.41
React: 15.4.2
Native-Base: 2.1.3
and testing on Android 7.0
I was looking at the documentation and found the text style props textAlignVertical
, but doesn´t work to me.
See the docs here
The same problem. Android 6.0. I think it's not the position cursor issue. Multiline parameter doesn´t work. Thereis only one visible line in the centre of textinput.
` const options = { label: 'abc', multiline: true,
stylesheet: {
Form.stylesheet,
textbox: {
Form.stylesheet.textbox,
normal: {
Form.stylesheet.textbox.normal,
height: 150,
textAlignVertical: 'top',
},
error: {
Form.stylesheet.textbox.error,
height: 150,
},
},
},
};`
Version
"react": "16.0.0" "react-native": "0.50.3" "tcomb-form-native": "^0.6.11"
Expected behaviour
I would expect writting cursor be on the top of TextInput (as happened on iOS).
Tell us what should happen
I have a form with a multiline field and I used below code to build it:
Appearance shows as textarea but the writting cursor (only on ANDROID) appear on the middle.