0
0
Fluttermobile~5 mins

Backdrop filter (blur effects) in Flutter - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the BackdropFilter widget do in Flutter?
BackdropFilter applies a filter to the existing painted content beneath its child widget, such as a blur effect, making the background appear blurred behind the child.
Click to reveal answer
beginner
Which class is used to create a blur effect with BackdropFilter in Flutter?
The ImageFilter class with the blur method is used, for example: ImageFilter.blur(sigmaX: 5.0, sigmaY: 5.0).
Click to reveal answer
intermediate
Why do you need to use a Stack widget when applying a BackdropFilter?
Stack allows layering widgets so that BackdropFilter can blur the widgets painted beneath it, creating the blur effect behind the child widget.
Click to reveal answer
intermediate
What happens if you use BackdropFilter without an opaque child widget?
If the child is not opaque (like a transparent Container), the blur effect will be visible. If the child fully covers the area with an opaque color, the blur won't be visible.
Click to reveal answer
beginner
How can you control the strength of the blur effect in BackdropFilter?
By adjusting the sigmaX and sigmaY values in ImageFilter.blur; higher values create stronger blur.
Click to reveal answer
Which widget is used to apply a blur effect to the background in Flutter?
ABackdropFilter
BContainer
COpacity
DTransform
What does the sigmaX parameter control in ImageFilter.blur?
AHorizontal blur intensity
BVertical blur intensity
CBlur color
DBlur radius in pixels
Which widget helps layer widgets so BackdropFilter can blur the background?
AListView
BRow
CStack
DColumn
If the child of BackdropFilter is fully opaque, what happens to the blur effect?
ABlur is stronger
BBlur is not visible
CBlur changes color
DBlur animates
Which import is needed to use ImageFilter.blur in Flutter?
Apackage:flutter/material.dart
Bpackage:flutter/widgets.dart
Cdart:async
Ddart:ui
Explain how to create a blur effect behind a widget using BackdropFilter in Flutter.
Think about layering widgets and applying a filter to the background.
You got /4 concepts.
    Describe why the child widget's opacity affects the visibility of the blur effect in BackdropFilter.
    Consider how the blur is applied behind the child.
    You got /4 concepts.