Trying to create a borderless text input has been a challenge for me. After applying the necessary properties, a bottom border line in black color appeared.
I am looking for a way to remove this border completely.
import { TextInput } from 'react-native-paper'
The following are the style codes I have used:
width: width * 0.6,
height: height * 0.075,
paddingLeft: 15,
fontSize: 12,
borderRadius: 25,
Here is the implementation of the text input:
<TextInput
style={styles.emptyPostPageTitleInput}
placeholder="title"
placeholderTextColor="grey"
maxLength={17}/>