Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@tatil/react-native-tabs

tsepeti37MIT0.4.0

React Native Tab View

readme

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>   
    )
  }
}