Made some handling updates, refresh updates, and layout updates. among that, intense markdown updates. #69
Merged
elifouts merged 3 commits intodevbits-go:mainfrom Feb 11, 2026
Merged
Conversation
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.
This pull request updates several screens in the frontend to improve consistency and user experience, especially regarding safe area handling and refresh controls. The main changes include standardizing the use of the
SafeAreaViewcomponent, updating refresh control appearance and behavior, and simplifying padding logic across multiple screens.Safe Area Handling:
SafeAreaViewto specifyedges={["top"]}instead of an empty array, ensuring only the top safe area is respected and improving layout consistency across devices. [1] [2] [3] [4] [5] [6] [7] frontend/app/post/[postId].tsxL644-R644, [8] [9] frontend/app/stream/[projectId].tsxL298-R298, [10] frontend/app/user/[username].tsxL384-R384)Refresh Control Updates:
RefreshControlcomponents to:colorsandtitleColorprops for consistent tint coloring.progressViewOffset={48}instead of a value based on insets, ensuring uniform refresh indicator positioning. [1] [2] [3] [4] [5] [6] [7] frontend/app/post/[postId].tsxL659-R669, [8] [9] frontend/app/stream/[projectId].tsxL308-R317, [10] frontend/app/user/[username].tsxL394-R401)Padding and Layout Simplification:
insets.topto the top padding, now using a fixed value (paddingTop: 8). This change is applied to all relevant screens for consistency. [1] [2] [3] [4] [5] [6] [7] frontend/app/post/[postId].tsxL659-R669, [8] [9] frontend/app/stream/[projectId].tsxL308-R317, [10] frontend/app/user/[username].tsxL394-R401)These changes make the UI more predictable and visually consistent across different screens and devices.