BlueWallet/screen/ActionSheet.ios.js
2023-11-01 20:40:34 -04:00

11 lines
339 B
JavaScript

import { ActionSheetIOS, InteractionManager } from 'react-native';
export default class ActionSheet {
static showActionSheetWithOptions(options, completion) {
ActionSheetIOS.dismissActionSheet();
InteractionManager.runAfterInteractions(() => {
ActionSheetIOS.showActionSheetWithOptions(options, completion);
});
}
}