How can I center-align the TextInput
label from the TextInput
component that comes with the React Native Paper library?
I have tried this:
<TextInput
label={
<Text style={styles.label}>...</Text>
}
/>
const styles = StyleSheet.create({
label: {
textAlign: 'center',
}
})