Skip to content

4.1.0

Compare
Choose a tag to compare
@testshallpass testshallpass released this 28 Jun 22:45

Changelog

FEATURES

  • Added onTap callback function prop for when DropdownAlert has been tapped close.
  • Added the ability to pass a payload object with an image source property as parameter to alertWithType #161. Example:
//...
const payload = { source: 'https://facebook.github.io/react-native/docs/assets/favicon.png' };
this.dropDownAlertRef.alertWithType('info', 'title', 'message', payload);
// Keep in mind, the image source property overrides any provided image source props.
//...