glass_ui_kit 1.0.1 copy "glass_ui_kit: ^1.0.1" to clipboard
glass_ui_kit: ^1.0.1 copied to clipboard

A beautifully crafted Flutter plugin for building Glassmorphism-styled UI components with ease. Includes customizable glass containers, clipping shapes (wave, blob, star, etc.), and modern blur effects.

example/lib/main.dart

import 'package:example/view/example_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Glass UI kit example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: const ExamplePage(),
    );
  }
}
4
likes
150
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

A beautifully crafted Flutter plugin for building Glassmorphism-styled UI components with ease. Includes customizable glass containers, clipping shapes (wave, blob, star, etc.), and modern blur effects.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on glass_ui_kit