glass 2.0.0+2 glass: ^2.0.0+2 copied to clipboard
Allows conversion of any widget to a "glass" or "frosted glass" version of itself
import 'package:flutter/material.dart';
import 'package:glass/glass.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@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: const 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: const EdgeInsets.all(200),
),
child: const Text(
"Night sky",
style: TextStyle(color: Colors.white),
),
).asGlass(
enabled: effectEnabled,
tintColor: Colors.transparent,
clipBorderRadius: BorderRadius.circular(15.0),
),
),
],
),
),
),
),
);
}
}