tsepeti / react-native-tabs

A Tab View component for React Native.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A Tab View component for React Native.


Languages

Language:JavaScript 100.0%