mattermost-mobile/app/utils/bottom_sheet/bottom_sheet.ios.js
Elias Nahum ae629a455c
Update UX for post long press menu (#2325)
* Update UX for post long press menu

* Post menu feedback review
2018-11-14 17:29:09 -03:00

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);
},
};