Last active
August 3, 2022 06:36
-
-
Save chunhunghan/b95ca50f8ef6426a6b8b4510fa0b51be to your computer and use it in GitHub Desktop.
Flutter : Round corner container and backdrop Filter effect and https://github.com/SnakeyHips/recipeapp/blob/master/lib/pages/home_page.dart
This file contains hidden or 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
| Widget frostedEdged(Widget child) { | |
| return ClipRRect( | |
| borderRadius: BorderRadius.circular(15.0), | |
| child: BackdropFilter( | |
| filter: ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0), | |
| child: child)); | |
| } |
thanks!
Nice!
Thanks!
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you sir, this is what i need!