Revert iOS Liquid Glass UI, preserve streaming bug fixes#284
Closed
Kief5555 wants to merge 1 commit intokief5555/iosfrom
Closed
Revert iOS Liquid Glass UI, preserve streaming bug fixes#284Kief5555 wants to merge 1 commit intokief5555/iosfrom
Kief5555 wants to merge 1 commit intokief5555/iosfrom
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 PR reverts the Liquid Glass UI changes from PR #283 across 7 iOS view files, restoring the original plain backgrounds and removing
.ultraThinMaterialtoolbar overrides while keeping all streaming logic intact.StreamerView.swift:
statusTextwith.regularMaterial, removed full-bar glass wrapper,.foregroundStyle(.white), extra padding, and shadow.ContentView.swift:
.toolbarBackground(.ultraThinMaterial/.visible)modifiers fromMainTabView.appBackgroundto plainColor(.systemBackground), removing gradient overlay.HomeView.swift, BrowseView.swift, SessionView.swift, LibraryView.swift:
.toolbarBackground(.ultraThinMaterial/.visible)modifiers from allNavigationStackinstances.BrowseView.swift:
FilterChipto simple implementation: removed iOS 26glassEffect/stroke logic, restored direct.background(isSelected ? brandAccent : Color(.systemFill), in: Capsule()).SettingsView.swift:
glassListRowBackgroundcomputed property.settingRowhelper to use.listRowBackground(Color(.secondarySystemGroupedBackground).opacity(0.75))..listRowBackground(glassListRowBackground)from mic toggle, stats, reload catalog, account info, sign out, and about rows (these now have no explicit list row background).SessionView.swift:
endSessionButtonto bordered style: removed.foregroundStyle(.white),.buttonStyle(.plain), and iOS 26 glass background block; restored.buttonStyle(.bordered)with.tint(.red).Preserved (untouched): Streaming fixes from PR #283 including mouse accumulation (
accDX/accDY,Math.trunc), synchronous keyboard focus (kbInput.focus()), peer connection cleanup on close (pc.close(),intentionalClose,reconnectTimer), stream profile quality switching, anddismissStreamer()restart behavior.