react-native-actions-sheet icon indicating copy to clipboard operation
react-native-actions-sheet copied to clipboard

Bug Android: Remove background shadow

Open noumantahir opened this issue 7 months ago • 1 comments

I am trying to make a floating container with not shadow and background, I am able to do it flawlessly on iOS but on android there is added shadow at the back of view which is messing up the overall UI

There is a similar issue #209 mentioning the change of shadow but unfortunately the trick does not apply when removing the background shadow.

IOS OUTPUT ( Expected ) Image

ANDROID OUTOUT (Unexpected) Image

CONTAINER STYLE

containerStyle: {
    backgroundColor: 'transparent',
    paddingBottom: 12,
    shadowColor: 'transparent',
    shadowOpacity:0,
    elevation: 5,
  } as ViewStyle,

noumantahir avatar Mar 19 '25 11:03 noumantahir