mattermost-mobile/app/utils/bottom_sheet/bottom_sheet.ios.js
Elias Nahum b8af8a3860
Lazy android native modules (#2973)
* Lazy loading Android modules

* Remove react-native-bottom-sheet

* Remove comments

* npm audit fix

* Update rnn-v2 modals

* audit fix

* Fix tests
2019-07-17 11:06:21 -04:00

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