react-native-paper
react-native-paper copied to clipboard
there is a white color line behind the label
there is a white line behind the label
react-native-paper-5.12.1
my code is
<TextInput ref={firstInputRef} mode='outlined' label='Email' placeholder="[email protected]" placeholderTextColor={Colors.colorDeepGreen} selectionColor={Colors.colorDeepGreen} outlineColor={Colors.colorDark} returnKeyType="next" activeOutlineColor={Colors.colorDeepGreen} secureTextEntry={false} value={email} onChangeText={(value) => setEmail(value)} style={styles.inputTextSt} theme={{ colors: { onSurfaceVariant: Colors.colorDeepGreen } }} onSubmitEditing={() =>{ secondInputRef.current.focus(); }} /> 
theme={{colors:{background:Colors.colorGreen}}}
you can change the white line's color with the code. But it also changes the background color.
How did you change the background to transparent?