Files
2015-09-29 15:48:48 -05:00

49 lines
959 B
TypeScript

import {IonicConfig} from './config';
// iOS Mode Settings
IonicConfig.modeConfig('ios', {
actionSheetEnter: 'action-sheet-slide-in',
actionSheetLeave: 'action-sheet-slide-out',
actionSheetCancelIcon: '',
actionSheetDestructiveIcon: '',
backButtonText: 'Back',
backButtonIcon: 'ion-ios-arrow-back',
iconMode: 'ios',
modalEnter: 'modal-slide-in',
modalLeave: 'modal-slide-out',
tabBarPlacement: 'bottom',
viewTransition: 'ios',
});
// Material Design Mode Settings
IonicConfig.modeConfig('md', {
actionSheetEnter: 'action-sheet-md-slide-in',
actionSheetLeave: 'action-sheet-md-slide-out',
actionSheetCancelIcon: 'ion-md-close',
actionSheetDestructiveIcon: 'ion-md-trash',
backButtonText: '',
backButtonIcon: 'ion-md-arrow-back',
iconMode: 'md',
modalEnter: 'modal-md-slide-in',
modalLeave: 'modal-md-slide-out',
tabBarPlacement: 'top',
viewTransition: 'md',
type: 'overlay',
mdRipple: true,
});