react-native-walkthrough-tooltip icon indicating copy to clipboard operation
react-native-walkthrough-tooltip copied to clipboard

show multi tooltip

Open ngodanghuuha opened this issue 2 years ago • 1 comments

Hello I want to show multi tooltip, but only show one, and tooltip always show, how to to that this is my code

<Tooltip
  isVisible={true}
  content={<Text>hello</Text>}
  placement="top"
  onClose={() => (true)}
>
<Image source={require('./assets/images/1.png')} resizeMode='cover' style={{width:25,height:25}}></Image>
</Tooltip>  
<Tooltip
  isVisible={true}
  content={<Text>Here</Text>}
  placement="top"
  onClose={() => (true)}
>
<Image source={require('./assets/images/2.png')} resizeMode='cover' style={{width:25,height:25}}></Image>
</Tooltip>  

thanks

ngodanghuuha avatar Mar 04 '22 08:03 ngodanghuuha

@ngodanghuuha Did you try setting useReactNativeModal to false? You cannot render 2 tooltips at the same time on iOS because you cannot have 2 modals at the same time.

apfritts avatar May 05 '22 15:05 apfritts