Guest User

Untitled

a guest
Jan 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <StyleProvider style={getTheme(Colors)}>
  2. <Container>
  3. <Header>
  4. <Left />
  5. <Body>
  6. <Title>
  7. </Title>
  8. </Body>
  9. <Right>
  10. <Button transparent onPress={onClose}>
  11. <Icon name="md-close" />
  12. </Button>
  13. </Right>
  14. </Header>
  15. <View style={{ flex: 1 }}>
  16. <Label>First Name</Label>
  17. <Item regular>
  18. <Input />
  19. </Item>
  20. <Label>Last Name</Label>
  21. <Item regular>
  22. <Input />
  23. </Item>
  24. </View>
  25. <View />
  26. <View >
  27. <View style={{ flex: 0.5, marginRight: 5 }}>
  28. <Button block >
  29. <Text style={styles.buttonText}> Cancel </Text>
  30. </Button>
  31. </View>
  32. <View style={{ flex: 0.5 }}>
  33. <Button block >
  34. <Text style={styles.updateButtonText}>
  35. Confirm
  36. </Text>
  37. </Button>
  38. </View>
  39. </View>
  40. </View>
  41. )}
  42. </Container>
  43. </StyleProvider>
Add Comment
Please, Sign In to add comment