UI Improvements #3 - #277
Merged
Merged
Conversation
…page, and minor tweaks
…ab switching system
…d wrap dialog buttons in shared outline container
… indicator on page swipe and selection
… bottom bar navigation
…nd fix bottom nav bar active font weight snap
…ine/padding inconsistencies in edit screen dialogs
…ntainer confirmation dialog
…rRow for concentric styling
…ier to align outline
Test Build: Merge upstream/main into material
Merge upstream/main into main
ravindu644
added a commit
that referenced
this pull request
Aug 15, 2026
DT-5 introduced DialogFooterRow but three dialogs kept their own copy of the same two-Surface cancel/confirm row: the bind-mount destination dialog in ContainerConfigForm, and SparseSizeDialog and UninstallConfirmationDialog in ContainersScreen. Each was the same ~28 lines with different labels, so a change to the footer's look had to be made in four places. Ported from the ui branch's #277, which is otherwise being dropped. One deliberate difference: the uninstall dialog drew its confirm label Bold and its cancel label SemiBold. DialogFooterRow applies one weight to both, so both are SemiBold now; the destructive emphasis is carried by the error colour rather than the font weight, and adding a second weight parameter for a single caller is not worth the API. Signed-off-by: ravindu644 <droidcasts@protonmail.com>
ravindu644
added a commit
that referenced
this pull request
Aug 15, 2026
Both progress bars rounded their ends by clipping the whole composable to a RoundedCornerShape. LinearProgressIndicator takes a strokeCap for exactly this, and it rounds the track and the indicator separately rather than shaving the corners off the composable's bounds. Ported from the ui branch's #277, which is otherwise being dropped. Signed-off-by: ravindu644 <droidcasts@protonmail.com>
ravindu644
added a commit
that referenced
this pull request
Aug 15, 2026
DT-5 introduced DialogFooterRow but three dialogs kept their own copy of the same two-Surface cancel/confirm row: the bind-mount destination dialog in ContainerConfigForm, and SparseSizeDialog and UninstallConfirmationDialog in ContainersScreen. Each was the same ~28 lines with different labels, so a change to the footer's look had to be made in four places. Ported from VizXtreme's #277 on the ui branch, which is otherwise dropped. One deliberate difference: the uninstall dialog drew its confirm label Bold and its cancel label SemiBold. DialogFooterRow applies one weight to both, so both are SemiBold now; the destructive emphasis is carried by the error colour rather than the font weight, and adding a second weight parameter for a single caller is not worth the API. Co-authored-by: VizXtreme <sk06pandit@gmail.com> Signed-off-by: ravindu644 <droidcasts@protonmail.com>
ravindu644
added a commit
that referenced
this pull request
Aug 15, 2026
Both progress bars rounded their ends by clipping the whole composable to a RoundedCornerShape. LinearProgressIndicator takes a strokeCap for exactly this, and it rounds the track and the indicator separately rather than shaving the corners off the composable's bounds. Ported from VizXtreme's #277 on the ui branch, which is otherwise dropped. Co-authored-by: VizXtreme <sk06pandit@gmail.com> Signed-off-by: ravindu644 <droidcasts@protonmail.com>
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 PR introduces a series of UI modernizations and usability enhancements focused on bringing the app’s interface in line with Android Material Design 3 guidelines. Key improvements include refactoring the progress indicators for storage, improving UI consistency, redesigning the active terminal session management system with long-press actions and custom confirmation dialogs, and implementing fluid, real-time bottom navigation bar icon animations that dynamically respond to page swiping and tab selections.