Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 485 Bytes

Subheader.md

File metadata and controls

26 lines (24 loc) · 485 Bytes

Usage

...
import { Subheader } from 'react-native-material-ui';
...
render() {
    <View>
      <Subheader text="Subheader text" />
    </View>
}

API

const propTypes = {
    text: PropTypes.string.isRequired,
    inset: PropTypes.bool,
    lines: PropTypes.number,
    style: PropTypes.shape({
        container: View.propTypes.style,
        text: Text.propTypes.style,
    }),
};