Created
September 18, 2021 15:17
-
-
Save FelipeSantos75/b158f1bb64cbed872f8c1172ab914d05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GlassMorphism extends StatelessWidget { | |
final Widget child; | |
final double start; | |
final double end; | |
const GlassMorphism({ | |
Key? key, | |
required this.child, | |
required this.start, | |
required this.end, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment