mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: remove default ImageFilter (#3349)
This commit is contained in:
parent
8bcc6384f2
commit
2f6df6a17d
@ -106,13 +106,14 @@ class DialogBarrier {
|
|||||||
String label;
|
String label;
|
||||||
Color color;
|
Color color;
|
||||||
bool dismissible;
|
bool dismissible;
|
||||||
ImageFilter filter;
|
ImageFilter? filter;
|
||||||
|
|
||||||
DialogBarrier({
|
DialogBarrier({
|
||||||
this.dismissible = true,
|
this.dismissible = true,
|
||||||
this.color = Colors.transparent,
|
this.color = Colors.transparent,
|
||||||
this.label = '',
|
this.label = '',
|
||||||
}) : filter = ImageFilter.blur(sigmaX: 4, sigmaY: 4);
|
this.filter,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
class StyledDialogRoute<T> extends PopupRoute<T> {
|
class StyledDialogRoute<T> extends PopupRoute<T> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user