BlueWallet/screen/ActionSheet.android.js
2020-04-03 16:09:49 +01:00

8 lines
215 B
JavaScript

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