1.0.7 • Published 5 years ago

react-native-bx-tabview v1.0.7

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

react-native-bx-tabview

a tabview about RN

  import {BxTabView} from 'react-native-bx-tabview'  

  ...  
  ...  
  ...  

  export default class App extends Component<Props> {  
    render() {  
      return (  
        <View style={styles.container}>  
          <BxTabView  
          height={windows.height}  
          tabWidth={windows.width}  
          tabs={[{title:'tab1'},{title:'tab2'}]}  
          >  
            <View>  
              <Text>tab1 info</Text>  
            </View>  
            <View>  
              <Text>tab2 info</Text>  
            </View>  
          </BxTabView>  
        </View>  
      );  
    }  
  }