Skip to content

Releases: lukebrandonfarrell/react-native-navigation-drawer-extension

v4.3.1

02 Nov 13:19
326655d
Compare
Choose a tag to compare

4.3.1 (2022-11-02)

Bug Fixes

  • merge pull request #92 from filipef101/master (326655d)
  • update rn types and type fix plus upstream lib compilation change (b0c80c4)

v4.3.0

05 Mar 19:10
850b49c
Compare
Choose a tag to compare

4.3.0 (2022-03-05)

Bug Fixes

  • fix conflicts with upstream/master (71251bb)

Features

  • add support for setting drawer width on landscape (ded2637)
  • merge pull request #50 from NBN23dev/master (c3b80eb)

v4.2.0

10 Sep 09:52
7f52243
Compare
Choose a tag to compare

4.2.0 (2021-09-10)

Features

  • added option to disable dragging/swiping gestures. (cc06d32)

v4.1.0

30 Aug 15:40
d26d5ec
Compare
Choose a tag to compare

4.1.0 (2021-08-30)

Features

  • animations: merge pull request #60 from CursedWizard/master (d26d5ec)

v4.0.3

04 Jun 09:25
Compare
Choose a tag to compare

4.0.3 (2021-06-04)

Bug Fixes

  • tooling: fixed various issues with release automation (d3242e2)

v4.0.2

02 Jun 12:43
Compare
Choose a tag to compare

4.0.2 (2021-06-02)

Bug Fixes

  • tooling: added release automation and pre-commit typescript compilation (4679b3f)

4.0.0 [Breaking Changes]

11 Jan 09:32
Compare
Choose a tag to compare
  • Improve API of SideMenuView 77aae39

We made some breaking changes to the SideMenuView to improve the API. New API works as such:

<SideMenuView
  style={{ flex: 1 }}
  drawerName={'CustomDrawer'}
  direction={'right'}
  passProps={{
    animationOpenTime: 300,
    animationCloseTime: 300,
    dismissWhenTouchOutside: true,
    fadeOpacity: 0.6,
    drawerScreenWidth: '75%',
    drawerScreenHeight: '100%',
    parentComponentId: props.componentId,
    style: {
      backgroundColor: 'white', 
    },
  }}
  options={{
    layout: {
      componentBackgroundColor: 'transparent',
    }
 >

v3.2.0...v4.0.0

v3.2.0

12 Nov 20:47
Compare
Choose a tag to compare
  • Added orientation support
  • Drawer can now be closed by swipping it
  • Added example project

Version 3.0.0

13 Apr 10:56
Compare
Choose a tag to compare

fix: 'transparent' is now automatically applied to the overlay. Fixes #19
fix: useNativeDriver is set to false. Fixes #20