i am trying to apply shadow on react-native bottom tab but i am unable to do that, how can we add shadow on react native bottom tab?
my tab bar style.
tabBarOptions={{
style: {
// flex:1,
position: 'absolute',
backgroundColor:
themeColorcontext.themeColor == 'light' ? '#fff' : '#222',
borderTopLeftRadius: vpWidth*0.085,
borderTopRightRadius: vpWidth*0.085,
height: vpHeight*0.15,
shadowColor: themeColorcontext.themeColor == 'light' ? 'rgba(0,0,0,0.5)' : 'rgba(255,255,255,0.5)',
shadowOffset: { width: 0, height: 6 },
shadowOpacity: 1,
shadowRadius: 6,
elevation: 10,
// flexWrap:'wrap',
borderTopColor:themeColorcontext.themeColor == 'light' ? '#fff' : '#222',
borderTopWidth:1,
borderWidth:1,
borderColor:themeColorcontext.themeColor == 'light' ? '#fff' : '#222',
// width:20
},
}}
you could try setting the "tabBarBackground" property of the screenOptions attribute. The tabBarBackground accepts a function that would return a Node so you can pass in a custom element with applied styling. Example: