wix-incubator/react-native-interactable

Interactable.View doesn't show if it is wrapped by a Modal

locphan2207 opened this issue · 0 comments

I'm trying to make a Bottom sheet that can be swiped down to close. I made a component with the structure like this:

<Modal>
  <Interactable.View>
     <View>
     ...
     </View>
  </Interactable.View>
</Modal>

On iOS, it doesn't show anything inside the Interactable.View.
I wonder how I could fix this. It works nicely on Android by the way.