fix: extend LynxView under safe area for full-screen background#26
Open
fix: extend LynxView under safe area for full-screen background#26
Conversation
DemoVC's GeometryReader respects the safe area by default, leaving white gaps at the notch and home indicator regions. Add .ignoresSafeArea() so the Lynx content can render edge-to-edge.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.ignoresSafeArea()toDemoVCin the app templateProblem
The
GeometryReaderinDemoVCrespects the safe area by default, so the LynxView stops at the notch and home indicator boundaries. This leaves white gaps at the top and bottom of the screen, breaking full-screen backgrounds (e.g. gradient fills).Fix
One-line change:
.ignoresSafeArea()on theGeometryReader.Lynx apps that need safe area awareness can still use
lynx.__globalPropsto read insets and add padding in their layout — this change just ensures the native container doesn't clip the rendering area.Test plan
pnpm run:ios— background gradient covers the full screen including notch and home indicator areas