I am currently working on developing tooltips and modals for an iOS app using react-native. The problem I am encountering is that the background of the tooltips and modals is not transparent, although it appears correctly on the Android version of the app.
Is there a specific setting that I might be overlooking?
https://i.sstatic.net/3kRji.png
https://i.sstatic.net/GQiqN.png
https://i.sstatic.net/e9Ffi.png
I have tried using various libraries such as react-native-elements (tooltip, overlay), react-native date-time-picker, and other dropdown and picker libraries in react-native. However, all of them are displaying a black solid color background and not showing the actual layout properly.
Below is a snippet of code for a sample tooltip:
<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>