diff --git a/docs/resources/ui/widgets/built-in-widgets/blur.md b/docs/resources/ui/widgets/built-in-widgets/blur.md
index 9831292f..146e8e9a 100644
--- a/docs/resources/ui/widgets/built-in-widgets/blur.md
+++ b/docs/resources/ui/widgets/built-in-widgets/blur.md
@@ -3,28 +3,30 @@ slug: blur
title: Blur
tags: [Base Elements, Components]
keywords: [Blur, Base Element, Component, Widget]
-description: Learn how to add Blur widget in your FlutterFlow app.
+description: Learn how to use the Blur widget in your FlutterFlow app.
---
-# Blur
-The Blur widget is used to blur its child or parent widget. You can use this widget to create the [Frosted glass](https://en.wikipedia.org/wiki/Frosted_glass) effect, typically seen in iOS.
+# Blur
+The **Blur** widget applies a blur effect to its child or to the content behind it. Use it to soften images, obscure sensitive content, or create effects such as frosted glass.
-## Adding Blur widget
+## Adding the Blur Widget
-Here's an example of how you can add the Blur widget to your project:
+To add a blur effect:
-1. First, drag the **Blur** widget from the **Base Elements** tab (in the Widget Panel) or add it directly from the widget tree.
-2. Now, add the **Image** widget inside the **Blur** widget. Customize the Image as per your requirement.
+1. Add the **Blur** widget from the **Base Elements** section of the Widget Palette.
+2. Add the widget you want to blur as its child.
+3. Select the **Blur** widget and configure its settings under **Blur Properties** in the Properties panel.
-
+
-## Adding blur effect to the parent widget
+## Blurring the Background
-By default, the Blur widget adds the blur effect on the child. For example, if you add the image widget as a child of the Blur widget, you will see the effect on the image. But sometimes, you might want to create the blur effect on the parent widget of the Blur widget.
+By default, the Blur widget applies the effect to its child. Enable **Backdrop** to blur the content behind the widget instead. This is useful for creating frosted-glass panels, overlays, and translucent navigation elements.
:::tip
-Adding a blur effect on the parent helps create the **Frosted Glass effect**.
+For a frosted-glass effect, place a semi-transparent widget inside the Blur widget and enable **Backdrop**.
:::
-
-
-Here is how you can create the first example:
-
-1. First, add the **Container** widget. Move to the properties panel, set its **width** to **Inifinity** and **height** to **200**. Also, set its **Background Image**.
-2. Inside the Container, add the **Blur** widget.
-3. Now, add the **Text** widget inside the blur widget and bring it to the center by changing its alignment.
-4. Finally, select the **Blur** widget from the widget tree or the canvas area. Move to the properties panel, scroll down to the **Blur Properties** section, and **turn on** the **Backdrop** toggle. This toggle decides whether to add a blur effect on the parent or child widget. If enabled, it will blur the parent widget, while disabling it will cast the blur effect on its child.
-
-
+
-
-
-Here are the steps to create the second example:
-1. First, add the **Container** widget. Move to the properties panel, set its **width** to **Inifinity** and **height** to **200**. Also, set its **Background Image**.
-2. Add the **Column** widget (inside the Container) and set its **Main Axis Alignment** to **end**.
-3. Add the **Blur** widget (inside the Column).
-4. Add the **Container** widget (inside the Blur) and set its **width** to **infinity** and **height** to **50**. Also, make the container's background around 40% transparent by selecting the **Fill Color** and bringing the second slider to the left.
-5. Add the **Text** widget (inside the Container) and bring it to the center by changing its alignment.
-6. Finally, select the **Blur** widget from the widget tree or the canvas area. Move to the properties panel, scroll down to the **Blur Properties** section and **turn on** the **Backdrop** toggle. This toggle decides whether to add a blur effect on the parent or child widget. If enabled, it will blur the parent widget, while disabling it will cast the blur effect on its child.
-
-
-
-
-
-## Customization
-
-You can customize the behavior of this widget using the various properties available under the properties panel.
+## Customizing the Blur Widget
-### Changing blur strength
+Select the **Blur** widget and use the following settings under **Blur Properties**:
-The blur strength is the blurriness added to the widget. This widget adds blur strength by utilizing the Sigma X and Sigma Y property. Sigma X sets the blur strength in the horizontal direction, while Sigma Y sets the blur strength in the vertical direction. The higher Sigma X and Y values increase the blurriness, whereas setting them to 0 completely removes the blurriness.
+- **Sigma X:** Controls the horizontal blur strength.
+- **Sigma Y:** Controls the vertical blur strength.
+- **Backdrop:** Applies the blur to the content behind the widget instead of its child.
+- **Should Apply Blur:** Turns the effect on or off. Use **Set from Variable** to control it dynamically using app state, backend data, or another source.
+- **Apply Clip:** Clips the blurred area to a rectangular or circular shape. Disable this option when you do not want to clip the blur.
+- **Border Radius:** Rounds the corners of the rectangular clip. This setting is available when **Apply Clip** uses the rectangular shape.
-To change the blur strength:
-
-1. Select the **Blur** widget from the widget tree or the canvas area.
-2. Move to the properties panel (on the right side of your screen), and scroll down to the **Blur Properties** section.
-3. Change the values in the **Sigma X** and **Sigma Y** input boxes.
-
-
-
-
-
-
-
-### Show or hide blur effect
-
-To show or hide the blur effect:
-
-1. Select the **Blur** widget from the widget tree or the canvas area.
-2. Move to the properties panel (on the right side of your screen), and scroll down to the **Blur Properties** section.
-3. **Check**/**Uncheck** the **Should Apply Blur** property to show/hide the blur effect. You can also set this value from a variable such as the App State variable, API response variable, or Firestore document by clicking on the **Set from Variable**.
-
-
-
-
-
-
+Higher **Sigma X** and **Sigma Y** values produce a stronger blur. Setting both values to `0` removes the blur.