In React Native, you can get the TextInput value with e.nativeEvent.text.
Unfortunately, this does not work for multiline={true}. One hack is to keep the link to TextInputand access the text value through the _lastNativeTextcomponent property . For example (suppose you assigned your component a TextInputreference to "textInput"):
onBlur={() => console.log(this.refs.textInput._lastNativeText)}