Skip to content

Update History

Rex Rao edited this page Sep 26, 2019 · 6 revisions

v0.7.0

v0.6.2

  • Fix #139 renderButtonText renders [object Object] if there is a call to setState in onSelect or renderButtonText functions

v0.6.1

  • Fix #127 renderButtonText does not work on select(idx) (Thanks to @swb2016)
  • Code optimization.

v0.6.0

  • Introduce renderButtonText property to extract button text from object array data.

v0.5.0

  • React 16 compatibility.
  • Fix #84

v0.4.4

  • Expose keyboardShouldPersistTaps prop on dropdown (ListView).

v0.4.3

  • Add ability to style dropdown text. See dropdownTextStyle and dropdownTextHighlightStyle. Thanks to @evansiroky
  • Fix TouchableWithNativeFeedback should be TouchableNativeFeedback

v0.4.2

  • Add animated option. #44
  • Add showsVerticalScrollIndicator option
  • Add landscape orientation support. #45

v0.4.1

  • Fix bug: #27 Fix a flex style bug.
  • Enhancement: #26 Support object type of options.

v0.4.0

  • New feature: #10 Support touchable component in renderRow.
  • New feature: #11 Open renderSeparator prop API.
  • New feature: Add adjustFrame prop for user to adjust the frame style of the dropdown in case the component calculate a mistake frame. (refer to #9) (code sample)
  • Enhancement: Compatible with react-native v0.36.0 which has a break change causes the default button with zero size.
  • Enhancement: #16 Prevent from warnings if array of styles is used instead of stylesheet or object. Thanks to @NikolaBorislavovHristov .

v0.3.2

  • Fix bug: #9 undefined is not an object (evaluating '_this.updatePosition.bind') in v0.3.1.
  • Fix bug: Wrong width of dropdown in very few cases.

v0.3.1

  • Fix bug: #6 Can not specify height style for dropdownStyle.
  • Remove updatePosition function.

v0.3.0

  • Auto update position before show.
  • Mark updatePosition function as depreciated. (May be removed in next version.)

v0.2.0

  • Add wrapper / container support

Now you can use these component as a wrapper / container. Anything wrapped in it can be the trigger of the dropdown.

Demo 4