glass 2.0.0+1 copy "glass: ^2.0.0+1" to clipboard
glass: ^2.0.0+1 copied to clipboard

Allows conversion of any widget to a "glass" or "frosted glass" version of itself

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:glass/glass.dart';

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

class MyApp extends StatefulWidget {
  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  bool effectEnabled = true;

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Container(
          decoration: BoxDecoration(
            image: DecorationImage(
              image: AssetImage('images/demo.png'),
            ),
          ),
          child: Center(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              crossAxisAlignment: CrossAxisAlignment.center,
              children: [
                GestureDetector(
                  child: TextButton(
                    onPressed: () => setState(() => effectEnabled = !effectEnabled),
                    style: TextButton.styleFrom(
                      padding: EdgeInsets.all(200),
                    ),
                    child: Text(
                      "Night sky",
                      style: TextStyle(color: Colors.white),
                    ),
                  ).asGlass(
                    enabled: effectEnabled,
                    tintColor: Colors.transparent,
                    clipBorderRadius: BorderRadius.circular(15.0),
                  ),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
98
likes
130
pub points
95%
popularity

Publisher

verified publisherzac.ac

Allows conversion of any widget to a "glass" or "frosted glass" version of itself

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on glass