14 lines
520 B
JavaScript
14 lines
520 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {ActionSheetIOS} from 'react-native';
|
|
|
|
export default {
|
|
showBottomSheetWithOptions: (options, callback) => {
|
|
return ActionSheetIOS.showActionSheetWithOptions(options, callback);
|
|
},
|
|
|
|
showShareBottomSheetWithOptions: (options, failureCallback, successCallback) => {
|
|
return ActionSheetIOS.showShareActionSheetWithOptions(options, failureCallback, successCallback);
|
|
},
|
|
};
|