hcmobile-sdk
Version:
mobile-sdk
19 lines (14 loc) • 426 B
JavaScript
/**
* github https://github.com/beefe/react-native-actionsheet
*/
import { Platform } from 'react-native';
import _ActionSheetIOS from './ActionSheetIOS';
import _ActionSheetCustom from './ActionSheetCustom';
export const ActionSheetCustom = _ActionSheetCustom;
let ActionSheet;
if (Platform.OS === 'ios') {
ActionSheet = _ActionSheetIOS;
} else {
ActionSheet = _ActionSheetCustom;
}
export default ActionSheet;