Help us improve
Share bugs, ideas, or general feedback.
From liquid-glass-plugin
Implement iOS 26 Liquid Glass effects in SwiftUI and UIKit. Use this skill whenever the user mentions liquid glass, glass effects, glassEffect, iOS 26 UI design, translucent navigation bars, glass morphing, GlassEffectContainer, or wants to add the new Apple glass material to their app. Also use when migrating an existing app's UI to iOS 26 style, or when the user asks about glass button styles, tab bar minimization, or the new sheet presentations.
npx claudepluginhub conorluddy/skills --plugin liquid-glass-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/liquid-glass-plugin:liquid-glassThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Liquid Glass is Apple's new design language (WWDC 2025 / iOS 26). It applies translucent, light-bending material to **navigation layers only** — never to content. This skill contains the full API reference and design guidance so you can implement it correctly.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Liquid Glass is Apple's new design language (WWDC 2025 / iOS 26). It applies translucent, light-bending material to navigation layers only — never to content. This skill contains the full API reference and design guidance so you can implement it correctly.
Read references/api-reference.md for the complete API surface, code examples, platform differences, performance notes, and anti-patterns. It covers:
.glassEffect(), .glassEffectID(), .glassEffectUnion(), .glassEffectTransition()).regular, .clear, .identity, .tint(), .interactive()).glass, .glassProminent)GlassEffectContainer for grouping and morphingUIGlassEffect / UIVisualEffectViewNavigation layer only. Glass goes on nav bars, toolbars, tab bars, floating action buttons, sheets, popovers, menus. Never on content, full-screen backgrounds, or scrollable content.
Use GlassEffectContainer whenever you have multiple glass elements. It shares the sampling region (glass cannot sample other glass) and enables morphing between elements.
Tint sparingly. Tinting conveys semantic meaning (primary action, destructive action), not decoration. Don't tint everything.
Respect accessibility automatically. Glass adapts to reduced transparency, increased contrast, and reduced motion without code. You can read @Environment(\.accessibilityReduceTransparency) and @Environment(\.accessibilityReduceMotion) if you need conditional behavior.
Performance awareness. iOS 26 glass costs ~13% battery vs 1% in iOS 18 (iPhone 16 Pro Max benchmark). Use containers, limit continuous animations, and test on older devices (iPhone 11-13 may lag).
No glass-on-glass. Never stack glass layers. Use the three-layer model: content (bottom, no glass) → navigation (middle, glass) → overlay (top, vibrancy/fills).
// Simplest glass effect
Text("Hello")
.padding()
.glassEffect()
// Glass buttons
Button("Cancel") { }
.buttonStyle(.glass)
Button("Save") { }
.buttonStyle(.glassProminent)
.tint(.blue)
// Grouped glass with morphing
@Namespace private var ns
GlassEffectContainer(spacing: 30) {
Button("Toggle") { withAnimation { expanded.toggle() } }
.glassEffect()
.glassEffectID("main", in: ns)
if expanded {
Button("Action") { }
.glassEffectID("action", in: ns)
}
}
Floating action button:
Button(action: compose) {
Image(systemName: "plus")
.font(.title2)
}
.buttonStyle(.glassProminent)
.tint(.blue)
Tab bar with search and minimization:
TabView {
Tab("Home", systemImage: "house") { HomeView() }
Tab("Search", systemImage: "magnifyingglass", role: .search) { SearchView() }
}
.tabBarMinimizeBehavior(.onScrollDown)
Custom shape:
.glassEffect(.regular, in: RoundedRectangle(cornerRadius: 16))
.glassEffect(.regular, in: .capsule) // default
.glassEffect(.regular, in: .rect(cornerRadius: .containerConcentric))
UIKit bridge:
let effect = UIGlassEffect(glass: .regular, isInteractive: true)
let effectView = UIVisualEffectView(effect: effect)
.glassEffect() to content views or backgroundsGlassEffectContainer)iOS 26.0+, iPadOS 26.0+, macOS Tahoe 26.0+, watchOS 26.0+, tvOS 26.0+, visionOS 26.0+. Requires iPhone 11 / SE 2nd gen or later. Older devices get frosted glass fallback.