placeholder={{responsiblePlayLimits.depositLimit || '500',}
Possibly related to #178 Use the bug report template if not
@chetna-webonise Set the placeholder like this
placeholder={{
label: 'Select Gender',
value: null,
color: '#909090',
}}
example:
<RNPickerSelect style = {{width:wp('75%'),color:'#909090', height:hp('7%'), marginLeft:wp(5)}}
onValueChange={(value) => console.log(value)}
placeholder={{
label: 'Select Gender',
value: null,
color: '#909090',
}}
items={[
{ label: 'Male', value: 'male', color: '#909090' },
{ label: 'Female', value: 'female', color: '#909090' },
]}
/>
Most helpful comment
@chetna-webonise Set the placeholder like this
placeholder={{ label: 'Select Gender', value: null, color: '#909090', }}example: