Subtitle.js 531 B

12345678910111213141516171819
  1. // @flow
  2. import { Platform } from 'react-native';
  3. import variable from './../variables/platform';
  4. import { PLATFORM } from './../variables/commonColor';
  5. export default (variables /* : * */ = variable) => {
  6. const subtitleTheme = {
  7. fontSize: variables.subTitleFontSize,
  8. fontFamily: variables.titleFontfamily,
  9. color: variables.subtitleColor,
  10. textAlign: 'center',
  11. paddingLeft: Platform.OS === PLATFORM.IOS ? 4 : 0,
  12. marginLeft: Platform.OS === PLATFORM.IOS ? undefined : -3
  13. };
  14. return subtitleTheme;
  15. };