Ship Liquid Glass UI that feels native, stays legible, and degrades safely across iOS/Android.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionexpo-liquid-glassExecute the skills CLI command in your project's root directory to begin installation:
Fetches expo-liquid-glass from devanshudesai/agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate expo-liquid-glass. Access via /expo-liquid-glass in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
1
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
1
stars
Ship Liquid Glass UI that feels native, stays legible, and degrades safely across iOS/Android.
expo-glass-effect and @expo/ui are not reliable in Expo Go on iOS.For tasks that involve significant visual design decisions, evaluate against these HIG buckets:
See references/apple-liquid-glass-design.md for practical design guidance.
If a proposed style conflicts with HIG intent, prefer the HIG-consistent option.
| Path | Use It For | Tradeoffs |
|---|---|---|
expo-glass-effect |
Most RN screens that need glass chips, floating buttons, toolbars, grouped controls | Best default in Expo; must guard runtime availability |
@expo/ui (Host + SwiftUI modifiers) |
Native SwiftUI composition, advanced glass transitions, coordinated IDs/namespaces | iOS-family only, dev-build workflow, SwiftUI mental model |
expo-router/unstable-native-tabs |
System-native Liquid Glass tab bars and iOS 26 nav behavior | Unstable API; syntax differs between SDK 54 and 55 |
@callstack/liquid-glass |
Non-Expo RN or teams standardizing on Callstack package | iOS/tvOS focus; also requires fallbacks and runtime checks |
Combine paths when appropriate:
expo-glass-effect for floating controls inside screens.@expo/ui only where SwiftUI-specific behavior is required.Apply these rules before implementing visuals:
import { Platform, View } from 'react-native';
import { BlurView } from 'expo-blur';
import { GlassView, isGlassEffectAPIAvailable } from 'expo-glass-effect';
export function AdaptiveGlass({ style, children }) {
if (isGlassEffectAPIAvailable()) {
return (
<GlassView style={style} glassEffectStyle="regular" tintColor="#FFFFFF10">
{children}
</GlassView>
);
}
if (Platform.OS === 'ios') {
return (
<BlurView style={style} intensity={40} tint="dark">
{children}
</BlurView>
);
}
return <View style={[style, { backgroundColor: 'rgba(60,60,67,0.30)' }]}>{children}</View>;
}
expo-glass-effect UsageglassEffectStyle: 'regular' | 'clear' | 'identity' as needed.opacity < 1 on GlassView or parents.isInteractive as mount-time only. Remount using a key if it must change.GlassView.isGlassEffectAPIAvailable() before rendering.SDK 55+ compound API:
<NativeTabs.Trigger name="index">
<NativeTabs.Trigger.TabBarIcon
ios={{ default: 'house', selected: 'house.fill' }}
androidIconName="home"
/>
<NativeTabs.Trigger.TabBarLabel>Home</NativeTabs.Trigger.TabBarLabel>
</NativeTabs.Trigger>
SDK 54 API:
<NativeTabs.Trigger name="index">
<NativeTabs.Trigger.Icon sf="house.fill" md="home" />
<NativeTabs.Trigger.Label>Home</NativeTabs.Trigger.Label>
</NativeTabs.Trigger>
Known issue: transparent NativeTabs can flash white while pushing screens in some stacks.
Mitigate by setting a background color via ThemeProvider (see native-tabs reference).
Use @expo/ui when coordinated glass transitions are needed:
import { Host, Namespace, Text } from '@expo/ui/swift-ui';
import { glassEffect, glassEffectID, padding } from '@expo/ui/swift-ui/modifiers';
const ns = new Namespace('glass');
<Host style={{ width: 220, height: 56 }}>
<Text
modifiers={[
padding({ all: 16 }),
glassEffect({ glass: { variant: 'regular' } }),
glassEffectID({ id: 'primary-chip', in: ns }),
]}
>
Explore
</Text>
</Host>;
Treat this as required before completion:
AccessibilityInfo.isReduceTransparencyEnabled() and provide non-glass fallback.Load only what is needed for the task:
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
anthropics/claude-code
mblode/agent-skills
github/awesome-copilot
leonxlnx/taste-skill
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
expo-liquid-glass has been reliable in day-to-day use. Documentation quality is above average for community skills.
I recommend expo-liquid-glass for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in expo-liquid-glass — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
expo-liquid-glass is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: expo-liquid-glass is focused, and the summary matches what you get after install.
We added expo-liquid-glass from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
expo-liquid-glass reduced setup friction for our internal harness; good balance of opinion and flexibility.
expo-liquid-glass has been reliable in day-to-day use. Documentation quality is above average for community skills.
expo-liquid-glass reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: expo-liquid-glass is focused, and the summary matches what you get after install.
showing 1-10 of 74