This only occurs in the Expo Go "Run in browser" feature
My code :
const Login = ({ navigation }) => {
const [email, setEmail] = useState(null);
<TextInput
placeholder="Email"
value={email}
onChangeText={setEmail}
style={styles.textInput}
/>
}
My code revolves around this. Hope anyone find a way out. Or is it an Expo Bug?