React Native Walkthrough Tooltip Versions Save

An inline wrapper for calling out React Native components via tooltip

v1.1.8

3 years ago

Included in this release:

  • added prop closeOnContentInteraction to allow for a user to interact with the tooltip content and not have it automatically close (#80)
  • added accessibility prop to Tooltip touchable (#84)

v1.1.7

4 years ago

This release introduces the prop topAdjustment which allows for adjusting the vertical position of the child element in the tooltip. This is useful because the measure function for Android can return an incorrect coordinate (nearly always offset by the height of the StatusBar)

See https://github.com/jasongaare/react-native-walkthrough-tooltip/pull/69

v1.1.6

4 years ago

This version adds typing for the childContentSpacing prop

v1.1.4

4 years ago

On some devices, there was a continuous loop with the measuring and layout callbacks, so the tooltip bubble would flicker rapidly between two sizes. This alleviates that issue.

v1.1.5

4 years ago

In rare cases, the measure function on a React Native View will return undefined values, likely before they are actually known. This helps prevent a crash and/or incorrect childRect values by checking first that all values are defined

v1.1.3

4 years ago
  • On some devices, there was a continuous loop with the measuring and layout callbacks, so the tooltip bubble would flicker rapidly between two sizes. This version alleviates that issue.

v1.1.2

4 years ago

This release fixes some issues with typings.

See: https://github.com/jasongaare/react-native-walkthrough-tooltip/pull/55

v1.1.1

4 years ago
  • This release helps alleviate some layout issues with tooltip placements that extended beyond the displayInsets on the right or bottom of the screen

Fixes issue: #53

v1.1.0

4 years ago
  • Removes readyToComputeGeom and waitingToComputeGeom from state, which were causing issues
  • Reset adjustedContentSize when moving from visible to hidden to correct measurement issue

v1.0.4

4 years ago
  • fixes an issue where the adjustedContentSize was not allowing the content of a center placement to grow
  • (behinds the scenes details) when the original contentSize fits inside the displayInset, the adjusted size is set to -1 and then the size for that dimension is NOT applied to the content. but if the size was too large, the adjusted size IS used (i.e. the best of both worlds 💪🏻)