mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-24 04:25:27 +08:00
42 lines
825 B
JavaScript
42 lines
825 B
JavaScript
/* eslint-disable react/prop-types */
|
|
|
|
/**
|
|
* @flow
|
|
*/
|
|
|
|
import { bool } from 'prop-types';
|
|
import React from 'react';
|
|
import { StyleSheet, Text } from 'react-native';
|
|
|
|
class AppText extends React.PureComponent {
|
|
static contextTypes = {
|
|
isInAParentText: bool
|
|
};
|
|
|
|
render() {
|
|
const { style, ...rest } = this.props;
|
|
const isInAParentText = this.context;
|
|
return (
|
|
<Text
|
|
{...rest}
|
|
accessibilityRole={rest.href ? 'link' : undefined}
|
|
style={[!isInAParentText && styles.baseText, style, rest.href && styles.link]}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default AppText;
|
|
|
|
const styles = StyleSheet.create({
|
|
baseText: {
|
|
fontSize: '1rem',
|
|
lineHeight: '1.3125em'
|
|
},
|
|
link: {
|
|
color: '#1B95E0',
|
|
marginTop: 'calc(0.5 * 1.3125rem)',
|
|
textDecorationLine: 'underline'
|
|
}
|
|
});
|