react-native-action-sheet-xg
Version:
react native ActionSheet component for both Android and IOS, useing pure JavaScript
16 lines (10 loc) • 312 B
JavaScript
/**
* Created by lulutia on 2017-03-31.
*/
import {
Platform
} from 'react-native';
import ActionSheetAndroid from './actionSheetAndroid';
import ActionSheetNewIOS from './actionSheetIOS';
let ActionSheet = Platform.OS === 'android' ? ActionSheetAndroid : ActionSheetNewIOS;
export default ActionSheet;