workaround property
Returns the BlurStyle.outer, if not PlatformUtilsImpl.isIOS, or BlurStyle.normal otherwise.
Implementation
BlurStyle get workaround {
if (PlatformUtils.isIOS) {
return BlurStyle.normal;
}
return BlurStyle.outer;
}
Returns the BlurStyle.outer, if not PlatformUtilsImpl.isIOS, or BlurStyle.normal otherwise.
BlurStyle get workaround {
if (PlatformUtils.isIOS) {
return BlurStyle.normal;
}
return BlurStyle.outer;
}