Skip to content

Releases: instea/react-native-popup-menu

small usability improvement

04 Nov 15:18
Compare
Choose a tag to compare

Menu component was now exported as default and if someone accidentally (wrongly) used named export it would lead to errors. Now menu can be imported via both default and named export.

allow to render null menu options

14 Sep 09:21
Compare
Choose a tag to compare

Android visual opening fix

30 Aug 09:50
Compare
Choose a tag to compare

This release contains workaround around RN issue facebook/react-native#6278 which caused "butterfly" effect during opening menu (i.e. menu seems opened at start and then minimize and opened again).

small bug fix update

26 Aug 07:26
Compare
Choose a tag to compare
  • fix: double export of MenuTrigger leads in some situation to strange errors.

remove problematic .babelrc

23 Jun 11:14
Compare
Choose a tag to compare

previously packed .babelrc could cause problem to projects without needed babel preset installed. See issue #5

non animated menu renderer

15 Jun 11:01
Compare
Choose a tag to compare
  • new renderer NotAnimatedContextMenu for context menu without animation
  • easy way to change default renderer via static method Menu.setDefaultRenderer

New styling possibilities

08 Jun 12:13
Compare
Choose a tag to compare
  • now you are able to style almost any part of the library
    • still not enough for you - use your own renderers
  • visual change : components now have visual feedback (before no feedback)
  • better exception when you accidentally use Menu outside MenuContext

enhancements in handling of bigger context menus

02 Jun 14:05
Compare
Choose a tag to compare

New Slide-in menu available

31 May 15:40
Compare
Choose a tag to compare

New slide-in menu is now available in addition to default (standard) context menu. Don't like any of them? Create your own renderer and plug it inside.

Add support for declarative control

30 May 07:58
Compare
Choose a tag to compare

Now you can control the menu in both ways - imperatively via instance methods or declaratively via props.

Aditional improvements

  • Using only simple text menu options - now you can use handy shorthand property text - see examples.