Skip to content

Glasswidget is simple package to implement glassmorphism widgets into flutter apps.

License

Notifications You must be signed in to change notification settings

yashraut362/Glasswidgets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  • 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

  1. glassbutton
  2. glassalert
  3. glasssnackbar
  4. glasscard etc.

screenshots

s1

Usage

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    glasswidgets:

Simple Examples

GlassContainer

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),
              ),
            ),
          ),

GlassSquare

new GlassSquare(
                          glassSize: 150,
                          glasscurve: 10,
                          glasswidget: Center(
                            child: Text(
                              'GlassSquare',
                              textAlign: TextAlign.center,
                              style: TextStyle(
                                  color: Colors.white,
                                  fontSize: 20,
                                  fontWeight: FontWeight.bold),
                            ),
                          ),
                        ),

GlassCircle

new GlassCircle(
                          glassSize: 150,
                          glasswidget: Center(
                            child: Text(
                              'GlassCircle',
                              textAlign: TextAlign.center,
                              style: TextStyle(
                                color: Colors.white,
                                fontSize: 20,
                                fontWeight: FontWeight.bold,
                              ),
                            ),
                          ),
                        ),

About

Glasswidget is simple package to implement glassmorphism widgets into flutter apps.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published