0.4.0 • Published 4 years ago

@tatil/react-native-tabs v0.4.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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