John Park

Results 16 comments of John Park

@BrodaNoel Hi, you can follow https://github.com/expo/expo/issues/15273#issuecomment-1005440392. I didn't check SDK 45 beta, but the fix is already `main` branch. So the issue should be fixed in SDK 45. In short,...

@BrodaNoel aha, I see. I misunderstood your issue. I had an issue with getting an image because of the permission, but I didn't need EXIF/lat-lng. I haven't tried to get...

The workaround I found is to unload the sound once it's done. ```js sound.current.setOnPlaybackStatusUpdate((status) => { if (status.didJustFinish) { sound.current.unloadAsync(); } }); ``` I hope I don't need to unload...

Maybe something like this would work: ```jsx useEffect(() => { if (Platform.OS === 'android') { copilotEvents.on('start', () => { StatusBar.setBackgroundColor(backdropColor); }); copilotEvents.on('stop', () => { StatusBar.setBackgroundColor(transparent); }); } return ()...

I found `androidStatusBarVisible` prop, but it doesn't work. https://github.com/mohebifar/react-native-copilot/blob/99676c2137a81d3569c65e332daf89b1a602c71d/src/hocs/copilot.js#L27 ![image](https://user-images.githubusercontent.com/14362029/101515095-9a584400-3943-11eb-9f2f-8cfad74d0cfa.png)

> Try making the status bar transparent: > > ```js > translucent // backgroundColor="transparent" > barStyle="dark-content" > {...statusBarStyle} > /> > ``` @eyalyoli thank you for the suggestion. I tested...