-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android not working. #21
Comments
Hi @peachlsy , could you provide more details for further investigation? Such as: emulator: (android studio/geny motion) |
Hi @carsonwah Thanks! |
Hi Carson, |
Hey guys. I had the same issue and I fixed my issue just by switching the order. What I used to have based on ...
render() {
const { navigation } = this.props;
return (
<View style={{ flex: 1 }}>
<NotificationPopup ref={popup => this.popup = popup} />
<SwitchNavigator navigation={navigation} />
</View>
);
}
} What I have now: ...
render() {
const { navigation } = this.props;
return (
<View style={{ flex: 1 }}>
<SwitchNavigator navigation={navigation} />
<NotificationPopup ref={popup => this.popup = popup} />
</View>
);
}
} Just by switching the order of my If this fixed your issue. I think we can ask @carsonwah to update the README's example code. |
Hi guys, sorry for the late reply. We are currently using Related discussions:
Solution 1Add Solution 2From Official Doc on zIndex:
So as a workaround, maybe we can remove the use of I will try that soon. Any comment or pull request is welcome. |
Hi, thank you for your contribution of this library. It works perfect on iOS, but it seems like nothing happened in android emulator after this.pop.show()
Thank you!
The text was updated successfully, but these errors were encountered: