Frostedify brings the stunning Liquid Glass UI (Glassmorphism) to your Flutter apps. Add beautiful blur, gradients, shimmer effects, and glass-style components — all in one easy-to-use package.
✨ Inspired by Apple’s glass UI on iOS
- ✅ Clean, reusable
Frostedify Glass Container - ✅
Frostedify Glass Button,Frostedify Glass Card,Frostedify Glass Dialog,Frostedify Navigation, andFrostedify Glass AppBar - ✅ Optional
Frostedify ShimmerEffect(animated light glint) - ✅ Platform-aware rendering (Android, iOS, Web, Desktop)
- ✅ Easy to use, beautifully customizable
Add to your pubspec.yaml:
dependencies:
frostedify: ^1.0.0Then run:
flutter pub getImport the package:
import 'package:frostedify/frostedify.dart';FrostedifyGlassContainer(
height: 100,
width: 300,
child: Text("Glass UI", style: TextStyle(color: Colors.white)),
)FrostedifyGlassButton(
label: "Click Me",
icon: Icons.touch_app,
onPressed: () {},
)FrostedifyGlassCard(
child: Column(
children: [
Icon(Icons.ac_unit),
Text("Cool Card"),
],
),
)FrostedifyGlassAppBar(title: 'Frostedify')FrostedifyGlassDialog(
title: "Hello!",
content: "This is a glass dialog",
onConfirm: () => Navigator.pop(context),
)Stack(
alignment: Alignment.center,
children: [
FrostedifyGlassContainer(child: Text("Shimmering")),
const LiquidShimmer(),
],
) FrostedifyNaviagationBar(
currentIndex: index,
onTap: (i) => setState(() => index = i),
items: [
FrostedifyNaviagationBootomNavigationClass(icon: Icons.home, label: 'Home'),
FrostedifyNaviagationBootomNavigationClass(icon: Icons.favorite, label: 'Likes'),
FrostedifyNaviagationBootomNavigationClass(icon: Icons.person, label: 'Profile'),
FrostedifyNaviagationBootomNavigationClass(icon: Icons.settings, label: 'Setting'),
],
),cd example
flutter run| Prop | Description | Default |
|---|---|---|
blur |
Blur intensity (sigma) | 15 |
borderRadius |
Border curve | Radius.circular(20) |
gradient |
Optional background gradient | null |
color |
Background color overlay | white.withOpacity(.2) |
✅ iOS
✅ Android
✅ Web
✅ Desktop (macOS, Windows, Linux)
Have ideas, feedback, or features to add?
We welcome pull requests and issues from the community!
MIT License © 2025 Muhammad Omar
Developed with ❤️ by @MuhammadOmar
If you like this package, please ⭐ it on GitHub and share it with the Flutter community!
