Skip to content

Releases: ammarahm-ed/react-native-actions-sheet

v0.5.4

01 Sep 17:33
Compare
Choose a tag to compare
update version to 0.5.4

v0.5.3

31 Aug 17:50
Compare
Choose a tag to compare
  • Fix numerous typescript errors #119 Thanks to @RazaShehryar
  • Fix example app throwing errors on launch
  • Add ActionSheetRefObject type which can be used as useRef<ActionSheetRefObject>() for the intellisense to work in typescript.
  • Set drawUnderStatusBar prop to false by default.

v0.5.2

29 Aug 15:40
Compare
Choose a tag to compare
  • use emitter subscription to remove keyboard event listeners. Fixes #109

v0.5.1

10 Aug 09:31
Compare
Choose a tag to compare
  • Fixed error containerStyle is undefined
  • Fixed keyboardDismissMode is set as a required prop

v0.5.0

03 Aug 06:34
Compare
Choose a tag to compare
  • Convert to Typescript
  • Fixed incorrect indicator positioning
  • Fixed onPositionChanged event not firing
  • ActionSheet behaviour with Keyboard & Inputs is improved, Now the action sheet content is always above the keyboard and does not hide partially behind it.
  • Gestures work now even when Keyboard is open so action sheet can be dismissed
  • Add keyboardDismissMode prop - Set how keyboard should behave on tapping the ActionSheet.
  • Add ExtraOverlayComponent prop - Render a component over the ActionSheet. Useful for rendering Toast components with which user can interact.
  • Removed PropTypes

v0.4.9

27 May 03:42
Compare
Choose a tag to compare

Fix #81 through #82 by @bvv8808

v0.4.8

07 May 09:45
Compare
Choose a tag to compare

Fixed

  1. Fixed stuttering on iOS when opening ActionSheet for the first time. #73
  2. Fixed onPositionChanged called too many times.
  3. Optimised ActionSheet behaviour when using closable prop as discussed in #70

Changed

  1. addHasReachedTopListener & removeHasReachedTopListener are now deprecated in favour of the new onPositionChanged prop.

v0.4.7

26 Apr 03:44
Compare
Choose a tag to compare

Fixed tapping on StatusBar closed ActionSheet but Modal stayed open. #69

v0.4.6

23 Apr 20:16
Compare
Choose a tag to compare
  • Fix incorrect positioning of indicator when ActionSheet covers fullscreen
  • Added a new prop drawUnderStatusBar so you can disable drawing under StatusBar which is enabled by default.
  • Updated Docs
  • Updated example to better handle ScrollView inside ActionSheet on Android. (Now it works similar to iOS)

v0.4.5

19 Apr 16:50
Compare
Choose a tag to compare
  • add onPositionChanged prop