Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
May 30, 2024
For iOS and Windows, you can use the itemStyle prop directly with the Picker component. However, for Android, you’ll need to apply styles to each Picker. Item individually using the style prop:
<Picker selectedValue={value} onValueChange={v => setValue(v)} > <Picker.Item label="hello" value="key0" style={{ backgroundColor: 'blue', fontFamily: 'serif', color: 'white' }} /> <Picker.Item label="world" value="key1" style={{ backgroundColor: 'blue', fontFamily: 'serif', color: 'white' }} /> </Picker>