DropDown shadow is not appearing after pumping the version to 5.1.21
See original GitHub issuedropDownContainerStyle is not accepting any shadow styling while other style props accept shadows.
<DropDownPicker
items={data.DoingFeeling.Doing}
style={{flexDirection: 'row-reverse', backgroundColor: '#e6e6e6', borderWidth: 0}}
containerStyle={{height: 40, marginTop: 10, marginBottom: 10}}
dropDownContainerStyle={{
maxHeight: 175,
shadowOpacity: 0.8,
shadowRadius: 15,
shadowColor: '#000',
borderColor: 'rgba(22,20,10,0.1)'
}}
arrowIconStyle={{opacity: 0.2, marginRight: 10}}
placeholder="Click to choose what you're doing."
placeholderStyle={{color: '#cacaca', fontFamily: 'Averta-Regular'}}
labelStyle={{fontFamily: 'Averta-Regular'}}
value={selectedDoing}
setValue={setSelectedDoing}
open={firstDDOpen}
setOpen={setFirstDDOpen}
onOpen={onFirstDDOpen}
zIndex={3000}
zIndexInverse={1000}
/>
Platform: iOS
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top Results From Across the Web
React-native shadow not appearing - Stack Overflow
Is the shadow working on IOs ? Android and IOS work ≠ in React-Native. For android, it works with elevation.
Read more >box-shadow - CSS: Cascading Style Sheets - MDN Web Docs
The box-shadow CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is ......
Read more >Downwithpatreon replacement - Edizioni La Grafica
Search: Outlook Add Ins Not Showing. ... 58-562 and 55-13411 OVERHEATING AFTER WATER PUMP REPLACEMENT 2003 ... Nvidia Broadcast Not Working With Mic....
Read more >INSTRUCTION MANUAL FOR MODEL TM3000 TABLETOP ...
As a rule, do not move the diaphragm pump because it is a heavy load of 4.5 kg. When moving it by necessity,...
Read more >spooky usernames - macellerialucio.it
Contents show Creepy Usernames The Defending Shadow KillerHobo The Wild Groom ... Player Settings: Names, nicknames and username ideas for i am not...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@fadinasr try adding
overflow: 'visible'to thedropDownContainerStylethe default theme has it as'hidden'and is interfering with the shadow@juancstlm Worked for me! Thanks