Skip to content

Release 1.0.0

Compare
Choose a tag to compare
@alantoa alantoa released this 30 Aug 14:47
· 12 commits to main since this release

Feat:

  • Replace EasyTipView with Popovers on iOS.
  • Support closing tooltip when scrolling or any touch.
  • Support setting <Tooltip.Arrow/> on all platforms.
CleanShot.2023-08-30.at.10.41.42.mp4

Improvements:

  • Upgrade the Balloon version to 1.5.4
  • Update README

Changes:

  • Move text props to style props

Before

<Tooltip.Text
    text={text}
    textColor="#000"
    fontWeight="bold"
 />

After

<Tooltip.Text
    text={text}
    style={{
      fontSize: 14,
      fontWeight: "bold",
      color: "#020202",
    }}
 />

Fixes:

  • Fixed the issue of hiding overflow in React subview on Android
  • Fixed duplicated open tooltip on iOS when switching apps