12345678910111213141516171819 |
- // @flow
- import { Platform } from 'react-native';
- import variable from './../variables/platform';
- import { PLATFORM } from './../variables/commonColor';
- export default (variables /* : * */ = variable) => {
- const subtitleTheme = {
- fontSize: variables.subTitleFontSize,
- fontFamily: variables.titleFontfamily,
- color: variables.subtitleColor,
- textAlign: 'center',
- paddingLeft: Platform.OS === PLATFORM.IOS ? 4 : 0,
- marginLeft: Platform.OS === PLATFORM.IOS ? undefined : -3
- };
- return subtitleTheme;
- };
|