A Tab View component for React Native.
Open a Terminal in the project root and run:
yarn add @tatil/react-native-tabs
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>
)
}
}