Skip to content

Blur

Use blur utilities to apply a blur filter to an element. Increasing the blur value makes the element progressively more blurred.

Use utilities like blur-sm and blur-2xl to control the amount of blur applied to an element:

Style('blur-none', child: Image.network('/img/mountains.jpg'))
Style('blur-sm', child: Image.network('/img/mountains.jpg'))
Style('blur-lg', child: Image.network('/img/mountains.jpg'))
Style('blur-2xl', child: Image.network('/img/mountains.jpg'))
ClassDescription
blur-noneRemove blur filter
blur-xsApply an extra small blur (4px)
blur-smApply a small blur (8px)
blurApply a normal blur (8px)
blur-mdApply a medium blur (12px)
blur-lgApply a large blur (16px)
blur-xlApply an extra large blur (24px)
blur-2xlApply a 2x extra large blur (40px)
blur-3xlApply a 3x extra large blur (64px)