Advertisement
Guest User

latest

a guest
Jun 25th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <Container>
  2. <View style={{ flex: 0.4, justifyContent: 'center', backgroundColor: '#2699FB' }}>
  3. <TouchableOpacity onPress={() => this.props.navigation.navigate('Auth')}>
  4. <Text style={{ color: '#FFFFFF', marginLeft: '1%' }}>Menu</Text>
  5. </TouchableOpacity>
  6. </View>
  7. <View style={{ flex: 0.4, justifyContent: 'center', alignItems: 'center', backgroundColor: '#68B8FC' }}>
  8. </View>
  9. <View style={{ flex: 4.2, backgroundColor: '#FFFFFF' }}>
  10. <View style={{
  11. borderRadius: 60 / 2,
  12. width: 60,
  13. height: 60,
  14. backgroundColor: '#BCE0FD',
  15. borderColor: '#FFFFFF',
  16. borderWidth: 1,
  17. alignSelf: 'center',
  18. alignItems: 'center',
  19. justifyContent: 'center',
  20. marginTop: -30,
  21. }}>
  22. <Text>Icon</Text>
  23. </View>
  24. </View>
  25. </Container>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement