mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
11 lines
339 B
JavaScript
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);
|
|
});
|
|
}
|
|
}
|