Thomas Cermak
Thomas Cermak
Experiencing the audio issue as well. 0.15.2, Swift 5, on iPhone 6s running 12.2.
We're using this library and have noticed dips in performance. I'll check to see if I get the same results.
I'm going to give this a stab this weekend. I'll report back as well.
@RichardLitt Not yet. I'm also using React Native Navigation, but the logic shouldn't be that different. I'll likely be able to get to it next week.
Sorry for the dumb question, but any update on this?
Wicked. We implemented a debounce which is working for now, but, as you pointed out, it's not ideal.
Anyone have any pointers where I could start looking to disable statusbar selection on overlays?
@guyca thanks for responding. is there a way to simply pass null for all statusbar attributes for overlays? If, on android for instance, a statusbar is set to drawunder and...
The issue is when you display the same overlay(s) over different screens with different requirements. In our case, we define an overlay along with our root navigation which we hide...
@AbanoubNassem declaring the following on every screen is the only way we've found so far: ``` componentDidAppear() { if (Platform.OS === 'ios') { Navigation.mergeOptions("DashboardOverlay", { statusBar: { style: 'light' }...