The Premium UI Kit for 2026
Beautiful, production-ready SwiftUI components featuring refractive glass effects, intelligent interactions, and a powerful theme system.
import LuxeUI
Real lens warping effects, not just blur. Physical distortion like looking through water.
Magnetic pull, velocity-aware springs, and predictive layouts that feel natural.
Global design tokens that flow to all components. 5 built-in presets or create your own.
Physics-based animations optimized for buttery-smooth performance.
Pure SwiftUI. No external frameworks. Just add and go.
Works seamlessly on iOS 15+ and macOS 12+ from a single codebase.
Browse premium components designed for 2026
The 2026 signature effect. Physical lens distortion with chromatic aberration and caustic animations.
FeaturedFloating glass cards with hover effects, shimmer animations, and haptic feedback.
Premium buttons with gradients, press animations, and multiple styles.
Animated ring progress indicator with smooth spring animations.
Animated mesh gradient backgrounds with floating orbs.
Fluid, organic components that feel alive with morphing shapes.
Velocity-aware physics engine with magnetic pull effects.
Add LuxeUI to your project in seconds
File → Add Package Dependencies...
https://github.com/Ronitsabhaya75/Luxe-UI.git
import SwiftUI
import LuxeUI
struct ContentView: View {
var body: some View {
LuxeCard {
Text("Hello, LuxeUI!")
}
}
}
.luxeTheme(.midnight)
dependencies: [
.package(
url: "https://github.com/Ronitsabhaya75/Luxe-UI.git",
from: "1.0.0"
)
]
8 built-in presets or create your own
LuxeUI components are designed to be intuitive and easy to use. Apply effects with simple modifiers and let the theme system handle the rest.
struct ContentView: View {
var body: some View {
ZStack {
// Animated background
MeshGradientBackground(
colors: [.purple, .blue, .pink]
)
// Refractive glass card
RefractiveGlassCard(
distortionIntensity: 0.2
) {
VStack {
Image(systemName: "sparkles")
Text("Premium UI")
}
}
}
}
}