Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 705 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 705 Bytes

A Tab View component for React Native.

Installation

Open a Terminal in the project root and run:

yarn add @tatil/react-native-tabs

Quick Start

Basic usage look like this:

import React, { Component } from 'react';
import Tabs from '@tatil/react-native-tabs';

class Index extends Component {
  render() {
    return (
       <Tabs>
         <View label="Ana Sayfa">
           <Text>Merhaba burası ana sayfa!</Text>
         </View>

         <View label="İletişim">
           <Text>Merhaba burası İletişim!</Text>
         </View>
       </Tabs>   
    )
  }
}