/* @flow */ import React, { Component } from 'react'; import { View, StyleSheet } from 'react-native'; import { Caption, Headline, Paragraph, Subheading, Title, } from 'react-native-paper'; export default class TextExample extends Component { static title = 'Typography'; render() { return ( Caption Paragraph Subheading Title Headline ); } } const styles = StyleSheet.create({ container: { padding: 16, }, text: { marginVertical: 4, }, });