BlurMaterial QML Type
The BlurMaterial type provides a material which renders an image and overlay color. More...
| Import Statement: | import Sailfish.Silica.Background 1.0 |
| Inherits: | Material
|
Detailed Description
Note: This QML type is under development and is subject to change.
BlurMaterial is expected to be used with an already blurred sourceItem image or a FilteredImage with the Filters.glassBlur filter. It does not provide any blurring itself and can be used to display unblurred images with an overlay color too.
To use this with a Background the background must declare a color QML property named color or the ThemeBackground type can be used.
Background {
property color color: Theme.rgba("black", 0.2)
material: GlassMaterial {
}
}