...
import { Subheader } from 'react-native-material-ui';
...
render() {
<View>
<Subheader text="Subheader text" />
</View>
}
const propTypes = {
text: PropTypes.string.isRequired,
inset: PropTypes.bool,
lines: PropTypes.number,
style: PropTypes.shape({
container: View.propTypes.style,
text: Text.propTypes.style,
}),
};