I used a react-native-paper-dropdown and the styles I am applying wont get set for example the background color wont change;
<DropDown
// label={''}
mode="flat"
visible={showDropDown}
showDropDown={() => setShowDropDown(true)}
onDismiss={() => setShowDropDown(false)}
value={country}
setValue={setCountry}
list={countriesList}
dropDownStyle={{
width: 100,
backgroundColor: 'white',
borderColor: 'white',
shadowColor: 'white',
}}
/>