maxs15 / react-native-modalbox

A <Modal/> component for react-native
MIT License
2.89k stars 503 forks source link

Backdrop #270

Open murph406 opened 5 years ago

murph406 commented 5 years ago

The prop backdrop does not appear to be working correctly. When set to false the backdrop stays white. Also, the opacity and color props for the backdrop do not appear to be working as well.

orkanylmz commented 5 years ago

same issue here, RN 0.59

nes123 commented 5 years ago

Same issue but just on Android

phazzzy commented 5 years ago

You can set background color in style prop

<Modal style={{
  backgroundColor: 'transparent',
}}>
  ...
</Modal>

https://github.com/maxs15/react-native-modalbox/blob/master/index.js#L447