react-native-walkthrough-tooltip
react-native-walkthrough-tooltip copied to clipboard
An inline wrapper for calling out React Native components via tooltip
- Added event to onPressBackGround() - This will pass the event data to callback function - users will now be able to access event data such as nativeEvent.pageX to identify...
closes #116 # Issue When a tooltip is initially rendered in a location on the screen without enough room, it flickers indefinitely. # Solution proposed by @tailorem in https://github.com/jasongaare/react-native-walkthrough-tooltip/issues/116#issuecomment-1242298562 The...
I am trying to pass event data to my call back function when closing tooltip. such as onClose={(e) => callBack(e)}. I would like to be able to access pageX to...
@jasongaare @dimadeveatii @BZaldua @josmmv @chadwilken The same code works on Android but not on iOS. { buttonName === 'Schedule' ? ( { AsyncStorage.setItem('hasSeenTooltip', 'true'); onPress(); setTooltipVisible(false); }} textStyle={[ style.textSmall, {...
Hi, thank you for this useful library! I'm encountering a layout issue when using the tooltip with the following props: ```js {/** My child component */} ``` These options were...
My navigation flow is as follows: **Tab Navigation (headerShown: false) → Stack Navigation (headerShown: true) → First screen** On the first screen, I set a button in the HeaderRight and...
- Changing the horizontal position direction. - Adding `flexDirection: 'row-reverse'` to the `background` style object in case of RTL
My child element is a TextInput. In Android emulator, the TextInput is not being highlighted: On web, the TextInput is correctly highlighted: