glasswidgets 0.0.3
glasswidgets: ^0.0.3 copied to clipboard
A new Flutter package for easy implementation of glassmorphism in flutter apps.
Glasswidgets #
- A new Flutter package for easy implementation of glassmorphism in flutter apps.
Getting Started #
Currently This package only contains Glasscontainer
soon going to add more widgets in this package #
- glassbutton
- glassalert
- glasssnackbar
- glasscard etc.
screenshots #

Usage #
To use this package :
- add the dependency to your pubspec.yaml file.
dependencies:
flutter:
sdk: flutter
glasswidgets:
How to use #
new GlassContainer(
glasscurve: 30, //giving curve to glassmorphic container
glassheight: 200, //giving height to glassmorphic container
glasswidth: 300, //giving width to glassmorphic container
glasswidget: //Child widget u can use any flutter widget over here.
Center(
child: Text(
'Hello World',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold),
),
),
),