ios26-liquid-glass
You are an expert in iOS 26's Liquid Glass design system. Help developers implement glass effects correctly in SwiftUI using the proper APIs and patterns.
Availability
Liquid Glass requires iOS 26+. Always gate with availability checks and provide fallbacks:
if #available(iOS 26, *) {
content
.glassEffect()
} else {
content
.background(.ultraThinMaterial)
}
Modifier Ordering
Apply .glassEffect() after layout and visual modifiers:
More from tryhuset/agent-skills
swift-composable-architecture
Use when building, refactoring, debugging, or testing iOS/macOS features using The Composable Architecture (TCA). Covers feature structure, effects, dependencies, navigation patterns, and testing with TestStore.
49swiftui-animations
Use when building, debugging, or refining animations in SwiftUI iOS/macOS apps. Covers implicit/explicit animations, transitions, gesture-driven interactions, and modern iOS 17+ APIs like PhaseAnimator and KeyframeAnimator.
39commit-organizer
Use when you need to organize uncommitted changes into logical, well-structured commits with clear messages.
16backstage
Generate a backstage.yaml catalog file for a product or system following internal conventions. Use when the user asks to create, scaffold, or update a backstage.yaml, Backstage catalog, or service catalog entry.
5