Skip to content

Releases: testshallpass/react-native-dropdownalert

3.7.1

25 Nov 22:03
Compare
Choose a tag to compare
  • Update style props for React 16.6.x compatibility. Thanks @Piropa
  • Pass state to render title and message function props. Thanks @sahanatroam

3.7.0

04 Oct 02:43
Compare
Choose a tag to compare
  • Fix replaceEnabled not working #94
  • Fix status bar delay change #133
  • Add Caveats to README #73
  • Revise usage example in README

3.6.0

29 Sep 04:09
Compare
Choose a tag to compare
  • Allow overrides of the wrapperStyle Thanks @EyMaddis

3.5.0

09 Jul 03:36
Compare
Choose a tag to compare

Change references to ViewProptypes or .proptypes.style to objects.

3.4.1

09 Jul 02:22
Compare
Choose a tag to compare

^ Fix runtime issue with proptypes #125 Thanks @EyMaddis

3.4.0

04 Mar 16:56
Compare
Choose a tag to compare

3.3.1

04 Mar 06:57
Compare
Choose a tag to compare

3.3.0

08 Feb 13:45
Compare
Choose a tag to compare
  • StatusBar._defaultProps if not defined fallback to default and black #113 Thanks @raarts
  • Added render props to further customize components. Example usage:
//...
import Icon from 'react-native-vector-icons/FontAwesome';
//....
  renderImage(props) {
    // DropdownAlert props are passed down
    return (
       <Icon name="rocket" size={30} color="#900" />
    );
  }
//...
render() {
  <DropdownAlert
      ref={ref => this.dropdown = ref}
      renderImage={(props) => this.renderImage(props)}
   />
 }
//....

3.2.0

03 Feb 03:52
Compare
Choose a tag to compare

Add SafeAreaView support for iPhone X. Thanks @ngandhy

3.1.3

03 Feb 02:22
Compare
Choose a tag to compare

Fixed issue for tapToCloseEnabled and showCancel Thanks @Enricopv