### Create an Expanding BlurryContainer Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Use the BlurryContainer.expand constructor to create a frosted glass container that expands to fill available space. ```dart BlurryContainer.expand( child: YOUR_WIDGET(), ) ``` -------------------------------- ### Apply Blurry Effect with Extension Method Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Apply a frosted glass effect to any widget using the .blurry() extension method. This offers a concise way to add the effect. ```dart YOUR_WIDGET().blurry( blur: 5, width: 200, height: 200, elevation: 0, color: Colors.transparent, padding: const EdgeInsets.all(8), borderRadius: const BorderRadius.all(Radius.circular(20)), ) ``` -------------------------------- ### Create a Square BlurryContainer Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Use the BlurryContainer.square constructor for a square frosted glass container with a specified dimension. ```dart BlurryContainer.square( child: YOUR_WIDGET(), dimension: 200, ) ``` -------------------------------- ### Add BlurryContainer Dependency Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Add this package to your pubspec.yaml file to use the BlurryContainer widget. ```yaml dependencies: blurrycontainer: 2.1.0 ``` -------------------------------- ### Import BlurryContainer Package Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Import the BlurryContainer package into your Dart file to access its widgets and extensions. ```dart import 'package:blurrycontainer/blurrycontainer.dart'; ``` -------------------------------- ### Create a BlurryContainer Widget Source: https://github.com/kishan-dhankecha/blurrycontainer/blob/master/README.md Use the BlurryContainer widget to apply a frosted glass effect to its child. Customize blur, size, and appearance. ```dart BlurryContainer( child: YOUR_WIDGET(), blur: 5, width: 200, height: 200, elevation: 0, color: Colors.transparent, padding: const EdgeInsets.all(8), borderRadius: const BorderRadius.all(Radius.circular(20)), ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.