I want to show images with title in ActionSheet buttons like this:
Code I am using is
var BUTTONS = [
'Investigated and Resolved',
'Under Investigation',
'Action Required',
'Urgent Action Required',
// 'Delete',
'Cancel',
];
var CANCEL_INDEX = 4;
showActionSheet = () => {
ActionSheet.showActionSheetWithOptions({
title: 'Flag the status of the event',
options: BUTTONS,
cancelButtonIndex: CANCEL_INDEX,
},
(buttonIndex) => {
this.setState({ clicked: BUTTONS[buttonIndex] });
});
}
Is there a way to style text or add images?