4.1.0
Changelog
FEATURES
- Added
onTap
callback function prop for whenDropdownAlert
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.
//...