项目作者: tsepeti

项目描述 :
A Tab View component for React Native.
高级语言: JavaScript
项目地址: git://github.com/tsepeti/react-native-tabs.git
创建时间: 2019-11-27T10:56:40Z
项目社区:https://github.com/tsepeti/react-native-tabs

开源协议:

下载





A Tab View component for React Native.

Installation

Open a Terminal in the project root and run:

  1. yarn add @tatil/react-native-tabs

Quick Start

Basic usage look like this:

  1. import React, { Component } from 'react';
  2. import Tabs from '@tatil/react-native-tabs';
  3. class Index extends Component {
  4. render() {
  5. return (
  6. <Tabs>
  7. <View label="Ana Sayfa">
  8. <Text>Merhaba burası ana sayfa!</Text>
  9. </View>
  10. <View label="İletişim">
  11. <Text>Merhaba burası İletişim!</Text>
  12. </View>
  13. </Tabs>
  14. )
  15. }
  16. }