I needed to pass a variable into the function so:
onChangeText= {value=>this.setState({commonName: value})}
I need to use setState to change the value of the state, and I need to change this react's state. The challenge was that I did not know how value was in context to the react state, so I had to pass it into the function.