Replace iOS18 with iOS26 across codebase#475
Merged
Merged
Conversation
Co-authored-by: jamespepper81 <84083764+jamespepper81@users.noreply.github.com>
…os26 Replace iOS18 with iOS26 across codebase
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 the app's support for the iOS "liquid glass" UI effect, raising the minimum iOS version required for these advanced blur materials from iOS 18 to iOS 26. All relevant code, documentation, and helper functions have been updated to reflect this new baseline. The changes ensure that the liquid glass effect and related UI features are only enabled on iOS 26 or later, with appropriate fallbacks for earlier versions.
Platform version update for liquid glass effect:
Code and helper function changes:
isIOS18OrHigher()has been renamed and updated toisIOS26OrHigher(), with logic and usage updated accordingly in bothutils/platform.tsand all call sites. [1] [2] [3]getLiquidGlassTint,getUltraThinMaterialTint,getThinMaterialTint) now check for iOS 26+ instead of iOS 18+. [1] [2] [3]Documentation updates: