Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 985 Bytes

File metadata and controls

26 lines (23 loc) · 985 Bytes

header-title-subtitle-headref

Header with Title and Subtitle

Preview ios header-title-subtitle-headref Preview android header-title-subtitle-headref

Syntax

import React, { Component } from 'react';
import { Container, Header, Left, Body, Right, Button, Icon, Title, Subtitle } from 'native-base';
export default class HeaderTitleSubtitleExample extends Component {
  render() {
    return (
      <Container>
        <Header>
          <Left />
          <Body>
            <Title>Title</Title>
            <Subtitle>Subtitle</Subtitle>
          </Body>
          <Right />
        </Header>
      </Container>
    );
  }
}