mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
10 lines
297 B
JavaScript
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 });
|
|
});
|
|
}
|
|
}
|