-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Description
Environment
react-native-paper: "3.6.0"
iOS: 13.3.1
Description
Label for multiline Textareas are aligned to the center. I expected the label to be aligned to the top. I don't see a prop to style label for Textinput either.
Reproducible Demo
import { TextInput } from 'react-native-paper';
export default class MyComponent extends React.Component {
state = {
text: ''
};
render(){
return (
<TextInput
label='Email'
value={this.state.text}
multiline
onChangeText={text => this.setState({ text })}
style={{height:400}}
/>
);
}
}```
