Created
January 17, 2017 19:21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
} from 'react-native'; | |
import Tabs from 'react-native-tabs'; | |
class Example extends Component { | |
constructor(props){ | |
super(props); | |
this.state = {page:'second'}; | |
} | |
render() { | |
var self = this; | |
return ( | |
<View style={styles.container}> | |
<Tabs selected={this.state.page} style={{backgroundColor:'white'}} | |
selectedStyle={{color:'red'}} onSelect={el=>this.setState({page:el.props.name})}> | |
<Text name="first">First</Text> | |
<Text name="second" selectedIconStyle={{borderTopWidth:2,borderTopColor:'red'}}>Second</Text> | |
<Text name="third">Third</Text> | |
<Text name="fourth" selectedStyle={{color:'green'}}>Fourth</Text> | |
<Text name="fifth">Fifth</Text> | |
</Tabs> | |
<Text style={styles.welcome}> | |
Welcome to React Native | |
</Text> | |
<Text style={styles.instructions}> | |
Selected page: {this.state.page} | |
</Text> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
justifyContent: 'center', | |
alignItems: 'center', | |
backgroundColor: '#F5FCFF', | |
}, | |
welcome: { | |
fontSize: 20, | |
textAlign: 'center', | |
margin: 10, | |
}, | |
instructions: { | |
textAlign: 'center', | |
color: '#333333', | |
marginBottom: 5, | |
}, | |
}); | |
AppRegistry.registerComponent('Example', () => Example); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment