ios: fix iOS 26 (#6419)

* ios: fix iOS 26 list shading on scroll

* revert to compatible design

* revert scrolling modifier
This commit is contained in:
Evgeny
2025-11-01 17:17:29 +00:00
committed by GitHub
parent 61f7a50d0a
commit f3a34e87ae
2 changed files with 10 additions and 6 deletions

View File

@@ -42,12 +42,14 @@ class AppTheme: ObservableObject, Equatable {
}
func updateFromCurrentColors() {
objectWillChange.send()
name = CurrentColors.name
base = CurrentColors.base
colors.updateColorsFrom(CurrentColors.colors)
appColors.updateColorsFrom(CurrentColors.appColors)
wallpaper.updateWallpaperFrom(CurrentColors.wallpaper)
DispatchQueue.main.async {
self.objectWillChange.send()
self.name = CurrentColors.name
self.base = CurrentColors.base
self.colors.updateColorsFrom(CurrentColors.colors)
self.appColors.updateColorsFrom(CurrentColors.appColors)
self.wallpaper.updateWallpaperFrom(CurrentColors.wallpaper)
}
}
}

View File

@@ -56,5 +56,7 @@
<string>remote-notification</string>
<string>voip</string>
</array>
<key>UIDesignRequiresCompatibility</key>
<true/>
</dict>
</plist>