glassmorphism_ui 0.1.0 glassmorphism_ui: ^0.1.0 copied to clipboard
Create beautiful Glassmorphic ui using this components provided by this package
glassmorphism_ui #
Create glassmorphic design using GlassContainer having frosted glass effect.
Getting Started #
Create beautiful glassmorphic designs using this package,GlassContainer Widget provided by this package is completely customizable,change Container's opacity,blur,border,radius etc.
GlassContainer example #
GlassContainer(
height: 130,
blur: 3,
shadowStrength: 10,
opacity: 0.2,
width: 230,
//this below code to remove border
border: Border.fromBorderSide(BorderSide.none),
borderRadius: BorderRadius.circular(10),
child: Center(child: Text("Glass Container"),),
),