Release 1.0.0
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