I am trying to build tooltip and modals for an iOS app using react-native. Issue I am facing is that background of tooltips and modals is not transparent. However its showing fine on android version of the app.
Is there some setting I am missing?
I have used different libraries like react-native-elements(tooltip, overlay), react-native date-time-picker and other dropdown and picker libraries of react-native but all are having black(solid color background) and actual layout is not being displayed.
Pasting a sample tooltip code as well,
<Tooltip withOverlay={true} overlayColor={Colors.unselected} backgroundColor={Colors.grey} width={250} height={'auto'} ModalComponent={Modal} popover={<EditMenu />}><Icon name={'downcircle'} family={'ant'} color={Colors.grey} size={18} /></Tooltip>