Skip to content

Instantly share code, notes, and snippets.

@chunhunghan
Last active August 3, 2022 06:36
Show Gist options
  • Select an option

  • Save chunhunghan/b95ca50f8ef6426a6b8b4510fa0b51be to your computer and use it in GitHub Desktop.

Select an option

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
Widget frostedEdged(Widget child) {
return ClipRRect(
borderRadius: BorderRadius.circular(15.0),
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0),
child: child));
}
@JohnPang1204
Copy link

Thanks!

@tisral
Copy link

tisral commented Aug 3, 2022

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment