Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <Button style={[styles.margina, styles.button]} onPress={() => this.editReview(f)}>
  2. <Text>Edit</Text>
  3. </Button>
  4.  
  5. const styles = StyleSheet.create({
  6. row: {
  7. flexDirection: 'row',
  8. },
  9. space: {
  10. justifyContent: 'space-between',
  11. },
  12. margina: {
  13. marginVertical: 15,
  14. marginHorizontal: 10,
  15. },
  16. button: {
  17. width: Dimensions.get('window').width * 0.8,
  18. height: 10,
  19. alignSelf: 'center',
  20. },
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement