0

I'd like to add a text entry field right above this button, but I'm not sure how to do it

const styles = StyleSheet.create({
  button: {
    marginTop: 400,
    justifyContent: 'center',
    alignItems: 'center'
  },
  textInput: {
    borderWidth: 2,
    borderRadius: 6,
    width: 100,
    alignItems: 'center',

  }
});

Image:

enter image description here

Quang Thái
  • 649
  • 5
  • 17

1 Answers1

0

You have 'marginTop: 400' on the button.

Maxwell
  • 405
  • 3
  • 8