LuxeUI is a premium, high-performance UI framework designed for 2026. It goes beyond standard components to provide "living" interfaces with refractive glassmorphism, fluid liquid effects, and intelligent spring physics.
The backbone of modern, premium interfaces.
- Glassmorphism Engine:
GlassmorphismContainer&LuxeCardwith multi-layered blur, saturation boost, and dynamic theme adaptation. - Interactive Elements:
LuxeButton(Primary, Secondary, Glass, Custom),LuxeBadge. - Cinematic Backgrounds:
MeshGradientBackground&FloatingOrbfor depth and atmosphere. - Data Visualization:
MultiThumbSlider(Range) &CircularProgressBar(Gradient). - Theme System: 8 Presets (Midnight, Neon, Ocean, Sunset, Forest, Monochrome, Light, Default).
Organic, "gooey" components that feel alive.
LiquidLoader: Metaball loading animations where blobs merge fluidly.LiquidButton: Interactive buttons with morphing, living backgrounds.LiquidProgress: Wave-filled progress bars.LiquidBlob: Standalone decorative elements that breath and morph.
SmartSpringEngine: Velocity-aware spring physics for natural motion.MagneticPull: Elements that subtly attract the cursor.
Add LuxeUI to your Package.swift:
dependencies: [
.package(url: "https://github.com/Ronitsabhaya75/Luxe-UI.git", from: "1.0.0")
]import SwiftUI
import LuxeUI
struct ContentView: View {
var body: some View {
ZStack {
// Cinematic Background
MeshGradientBackground(colors: [.purple, .blue, .black])
.ignoresSafeArea()
VStack(spacing: 30) {
// Glass Card
LuxeCard {
Text("Welcome to LuxeUI")
.font(.title.bold())
}
// Liquid Button
LiquidButton("Get Started", configuration: .neon) {
print("Tapped!")
}
}
}
}
}Run the included demo apps to see the components in action:
1. Foundation & Themes
swift run CoreComponentsDemo2. Premium Liquid Effects
swift run LiquidUIDemoFull documentation is available in the docs/ folder and documentation/ directory.
MIT License - see LICENSE for details.