I am using the TextInput of React Native Paper (https://callstack.github.io/react-native-paper/text-input.html)
Is there a way to not show the label on the border line when we are focusing on a TextInput?
<TextInput
mode="outlined"
label="Email"
value={email}
onChangeText={email => setEmail(email)}
theme={{ colors: { primary: APP_COLORS.primary }}}
selectionColor={APP_COLORS.primary}
outlineColor={APP_COLORS.grey_low}
left={<TextInput.Icon name={() => <AntDesign name="mail" size={22} color="black" />} />}
/>