Rn Tourguide Versions Save

🚩Make an interactive step by step tour guide for your react-native app (a rewrite of react-native-copilot)

v3.3.0

1 year ago

v3.2.0

2 years ago
  • 🐛 fix(dismissOnPress): not required

v3.1.2

2 years ago
  • back to get dimension from window and not screen

v3.1.0

2 years ago
  • init dimension in svgmask CTOR is enough

v3.0.0

2 years ago
  • add isHorizontal prop by @niebo26

v2.7.1

3 years ago
  • 🐛 fix prevent tooltip to be displayed on stop b6a1fa5 @xcarpentier

v2.7.0

3 years ago
  • 🐛 fix(provider): unregisterStep and reset canStart value (#18) 4e25a7c @cindmichelle

    • reset canStart value
    • fix setSteps to prevent race condition
  • 🐛 fix(utilities): allows border radius object to rectangles (#14) cd60b55 @Gabrielfcs

    • makes it possible to add a border to the rectangles of the TourGuideZoneByPosition component
  • 🐛 Fixed .text of undefined (#20) 2c9d28e @ssstelsss

v2.6.1

3 years ago

✨ introduce BorderRadiusObject props.

v2.5.0

3 years ago
  • ✨ feature: add prop tooltipBottomOffset to TourGuideZone component.

v2.4.1

3 years ago
  • 🎸 Add canStart to hook return to be able to start at mount but need to wait for everything ok.
  // Can start at mount 🎉
  // you need to wait until everything is registered 😁
  React.useEffect(() => {
    if (canStart) {
      // 👈 test if you can start otherwise nothing will happen
      start()
    }
  }, [canStart]) // 👈 don't miss it!