import React from 'react'; import { Platform, StyleSheet, Text } from 'react-native'; const HeaderTitle = ({scope, title="", style=styles.titleColor}) => ( {scope ? $t(scope) : title} ); export default HeaderTitle; const styles = StyleSheet.create({ title: Platform.select({ ios: { fontSize: 17, fontWeight: '600' }, android: { fontSize: 20, //fontFamily: 'sans-serif-medium', fontWeight: 'normal', lineHeight: 26 }, default: { fontSize: 18, fontWeight: '500' } }), titleColor: { color: pageTitleTint } })