What problem does it solve?
Applying iOS 26 Liquid Glass effects correctly requires coordinating containers, morphing IDs, shapes, and version fallbacks, and mistakes like missing GlassEffectContainer grouping or redundant clipShape calls produce broken or inconsistent UI.
Core Features & Use Cases
- SwiftUI Glass Patterns: Provides wrappers like GlassEffectContainerIOS26, glassEffectInteractiveIOS26, and glassEffectIDIOS26 for grouped, interactive, morphing glass elements.
- UIKit Glass Utilities: Covers GlassContainerViewIOS26, GlassEffectViewIOS26, and UIButton.Configuration.glassIOS26 with correct glassContentView usage.
- Version Fallbacks: All utilities degrade gracefully to ultraThinMaterial backgrounds on iOS versions below 26.
- Use Case: When building a floating navigation panel with buttons that morph between states, this Skill supplies the exact container, namespace, and animation pattern to implement it correctly.
Quick Start
Ask the assistant to add an interactive glass button with morphing transition to a SwiftUI navigation panel using the iOS 26 glass utilities.