I want to center-align the TextInput label, React Native Paper

68 Views Asked by At

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', 
    }
})
0

There are 0 best solutions below