Guest User

Untitled

a guest
Mar 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <Container>
  2. <Content>
  3. <View style={theme.textRegistry}>
  4. <Text style={theme.cond2youBold30}> COND2YOU </Text>
  5. <Text/>
  6. <Text> Conte-me aonde fica seu condomínio </Text>
  7. <Text> assim conseguirei direcionar você </Text>
  8. <Text> ao melhor atendimento disponível </Text>
  9. </View>
  10. <Item floatingLabel success={this.state.address !== ''}>
  11. <Label>Endereço</Label>
  12. <Input value={this.state.address} onChangeText={(address) => this.setState({address})} />
  13. </Item>
  14.  
  15. <Item floatingLabel success={this.state.number !== ''}>
  16. <Label>Número</Label>
  17. <Input keyboardType='numeric' value={this.state.number} onChangeText={(number) => this.setState({number})} />
  18. </Item>
  19.  
  20. <Item floatingLabel success={this.state.complement !== ''}>
  21. <Label>Complemento</Label>
  22. <Input value={this.state.complement} onChangeText={(complement) => this.setState({complement})} />
  23. </Item>
  24.  
  25. <Item floatingLabel success={this.state.neighborhood !== ''}>
  26. <Label>Bairro</Label>
  27. <Input value={this.state.neighborhood} onChangeText={(neighborhood) => this.setState({neighborhood})} />
  28. </Item>
  29.  
  30. <Item floatingLabel success={this.state.city !== ''}>
  31. <Label>Cidade</Label>
  32. <Input value={this.state.city} onChangeText={(city) => this.setState({city})} />
  33. </Item>
  34. </Content>
  35. <Footer style={theme.backgroundTransparent}>
  36. <Button block success onPress={this._saveLocation.bind(this)} style={theme.buttonDefault}>
  37. <View style={theme.inLineCenter}>
  38. <Text style={theme.fontBoldButton}> Continuar </Text>
  39. <Icon name='ios-arrow-dropright' style={{fontSize: 23, color: 'white'}}/>
  40. </View>
  41. </Button>
  42. </Footer>
  43. </Container>
Add Comment
Please, Sign In to add comment