Input predictable - React Native

In React Native, be careful when using onChange or onChangeText callbacks. Do not trigger a change of context when text changes.

<TextInput 
  onChangeText={ /* Do not change context */ }
/>