Created
July 10, 2019 07:15
-
-
Save florent37/9fb1bd3e2ad61bac5adb4c01d84f22f1 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
import 'dart:ui'; | |
import 'package:flutter/material.dart'; | |
class BlurredBackground extends StatelessWidget { | |
final Widget child; | |
final Image image; | |
final double blurSize; | |
final Color maskColor; | |
const BlurredBackground({Key key, this.image, this.child, this.blurSize = 5.0, this.maskColor = Colors.transparent}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Stack( | |
fit: StackFit.expand, | |
children: <Widget>[ | |
this.image, | |
Center( | |
child: ClipRect( | |
child: BackdropFilter( | |
filter: ImageFilter.blur( | |
sigmaX: this.blurSize, | |
sigmaY: this.blurSize | |
), | |
child: Container( | |
color: this.maskColor, | |
alignment: Alignment.center, | |
child: this.child, | |
), | |
), | |
), | |
), | |
], | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment