File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint-disable react-hooks/exhaustive-deps */
2
- /* eslint-disable prettier/prettier */
3
2
/* eslint-disable react-native/no-inline-styles */
4
3
import React , { useState , useEffect , useRef } from 'react' ;
5
4
@@ -100,16 +99,20 @@ export default function App() {
100
99
errorText = { gender . error }
101
100
multiEnable = { false }
102
101
dialogTitleStyle = { { color : 'black' } }
103
- checkboxColor = "blue"
104
- checkboxLabelStyle = { { color : 'black' , fontWeight : '700' } }
105
102
textInputStyle = { { fontWeight : '700' } }
106
103
hideSearchBox = { true }
107
- outlineColor = "black"
108
104
theme = { {
109
105
colors : {
110
106
placeholder : 'black' ,
111
107
} ,
112
108
} }
109
+ textInputProps = { {
110
+ outlineColor : 'black' ,
111
+ } }
112
+ checkboxProps = { {
113
+ checkboxColor : 'blue' ,
114
+ checkboxLabelStyle : { color : 'black' , fontWeight : '700' } ,
115
+ } }
113
116
/>
114
117
< PaperSelect
115
118
label = "Select Colors"
You can’t perform that action at this time.
0 commit comments