Luis Cruz

Results 6 comments of Luis Cruz

I'm not sure if you guys are having the same issue I faced, but in my case, I fixed it in this way ``` ... const [value, setValue] = useState('');...

Hey everyone, I have the same issue, even after move NavigationContainer into NativeBaseProvider ``` ... ``` But I got the same result FezVrasta mentioned

Yes, I'm using `NativeStackNavigator` instead `StackNavigator`, However, after the switch to `StackNavigator` it made the trick. Do you know why `StackNavigator` works and `NativeStackNavigator` doesn't?

Same issue, if you resize the window the current image appears

@aryan-dwivedi Not with this library, I ended up using [react-native-headphone-detection](https://github.com/Tintef/react-native-headphone-detection) wrapping the logic in a hook like this ``` import { useState, useEffect } from 'react' import HeadphoneDetection from 'react-native-headphone-detection'...