Skip to content

Release 0.1.9

Compare
Choose a tag to compare
@enzomanuelmangano enzomanuelmangano released this 08 Oct 13:42
· 2 commits to main since this release

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