BlueWallet/screen/ActionSheet.js
2023-10-26 15:55:38 -04:00

10 lines
297 B
JavaScript

import { Alert, InteractionManager } from 'react-native';
export default class ActionSheet {
static showActionSheetWithOptions(options) {
InteractionManager.runAfterInteractions(() => {
Alert.alert(options.title, options.message, options.buttons, { cancelable: true });
});
}
}