Skip to content

Releases: enzomanuelmangano/pressto

Release 0.2.0

15 Nov 11:24
Compare
Choose a tag to compare

0.2.0 (2024-11-15)

Bug Fixes

  • non worklet warning with react-native v0.76 (#6) (30a15e5)

Release 0.1.9

08 Oct 13:42
Compare
Choose a tag to compare

Release Notes - v0.1.9 (2024-10-08)

New Experimental Feature

Enhanced Scrolling with Pressables (Experimental)

  • Introduced renderScrollComponent function for improved interaction between scrollable views and pressable components. #4
  • Note: This feature is experimental and opt-in.
  • It is only activated when renderScrollComponent is explicitly passed to a scrollable component.
  • When activated, it helps prevent accidental activations of pressable components during scroll gestures.
  • Usage example:
    <FlatList
      renderScrollComponent={renderScrollComponent}
      // ... other props
    />
  • Implementation: 2a360f7

Documentation Updates

Animated Pressable Documentation

  • Fixed the documentation section about Animated Pressable components. #5
  • This addresses the documentation gap highlighted in issue #3