Skip to content
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

fix: webview in stack #607

Merged
merged 3 commits into from
Sep 29, 2020
Merged

fix: webview in stack #607

merged 3 commits into from
Sep 29, 2020

Conversation

WoLewicki
Copy link
Member

Added check for if there is WebView on the screen we are transitioning to. If there is, we don't change the layer type in stack navigator to avoid crash seen in #105.

Co-authored-by: Krisztiaan <krisz011@gmail.com>
@Krisztiaan
Copy link
Contributor

Hah, idk how it goes in this repo, but lgtm! :)

@fangasvsass
Copy link

looks good

@chirag04
Copy link
Contributor

chirag04 commented Sep 3, 2020

@WoLewicki can we merge this?

@WoLewicki
Copy link
Member Author

We will see after some discussion if there are no better options. For now, you can use patch-package and apply those changes in order to test if everything works right.

@@ -151,7 +152,22 @@ public void setTransitioning(boolean transitioning) {
return;
}
mTransitioning = transitioning;
super.setLayerType(transitioning ? View.LAYER_TYPE_HARDWARE : View.LAYER_TYPE_NONE, null);
boolean isWebViewInScreen = hasWebView(this);
super.setLayerType(transitioning && !isWebViewInScreen ? View.LAYER_TYPE_HARDWARE : View.LAYER_TYPE_NONE, null);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line isn't consistent with the PR description. You say that we don't change the layer type in case there is a webview, but it appears that we change it to NONE. Should we avoid updating layer type altogether as stated in the description?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could not change the layer type, but if it is already HARDWARE for some reason, it will probably lead to crash. I can add a check for if the layer is not HARDWARE and, if so, just do nothing when there is a WebView.

Copy link
Member

@kmagiera kmagiera left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rubber stamping this PR, please just address the inline comment I left prior to merging.

@fangasvsass
Copy link

can we merge this?

@WoLewicki WoLewicki merged commit 72c0209 into master Sep 29, 2020
@WoLewicki WoLewicki deleted the @wolewicki/webview-in-stack branch September 29, 2020 11:33
Sekhmet added a commit to ExodusMovement/react-native-screens that referenced this pull request Oct 20, 2021
Sekhmet added a commit to ExodusMovement/react-native-screens that referenced this pull request Oct 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants