Quantcast
Channel: Active questions tagged react-native+ios - Stack Overflow
Viewing all articles
Browse latest Browse all 16552

Transparent tooltip and modals on iOS

$
0
0

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?

enter image description here

enter image description here

enter image description here

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>

Viewing all articles
Browse latest Browse all 16552

Trending Articles