diff --git a/learn/react-native/auto-layout.md b/learn/react-native/auto-layout.md
new file mode 100644
index 000000000..8112e094e
--- /dev/null
+++ b/learn/react-native/auto-layout.md
@@ -0,0 +1,211 @@
+---
+title: "Auto Layout"
+id: "auto-layout"
+sidebar_label: "Auto Layout"
+---
+---
+
+import autolayoutProps from '/learn/assets/autolayout/common/autolayout-props.png';
+import alignmentDefaultRow from '/learn/assets/autolayout/common/alignment-default-row.png';
+import alignmentDefaultColumn from '/learn/assets/autolayout/common/alignment-default-column.png';
+import alignmentAutoRow from '/learn/assets/autolayout/common/alignment-auto-row.png';
+import alignmentAutoColumn from '/learn/assets/autolayout/common/alignment-auto-column.png';
+
+import addingAutolayoutToWidgetsOne from '/learn/assets/autolayout/web/adding-autolayout-to-widgets-one.mp4';
+import addingAutolayoutToWidgetsTwo from '/learn/assets/autolayout/web/adding-autolayout-to-widgets-two.mp4';
+import addingWidgetToAutolayout from '/learn/assets/autolayout/web/adding-widgets-to-autolayout.mp4';
+import autolayoutDirection from '/learn/assets/autolayout/web/autolayout-direction.mp4';
+import autolayoutWrap from '/learn/assets/autolayout/web/autolayout-wrap.mp4';
+import alignment from '/learn/assets/autolayout/web/alignment.mp4';
+import width from '/learn/assets/autolayout/web/width.mp4';
+import gap from '/learn/assets/autolayout/web/gap.mp4';
+import rowGap from '/learn/assets/autolayout/web/row-gap.mp4';
+import padding from '/learn/assets/autolayout/web/padding.mp4';
+
+Auto Layout is a smart layout system that manages the positioning, sizing, and spacing of widgets for you. Inspired by CSS Flexbox, it allows you to build responsive interfaces by simply configuring direction, alignment and spacing in Studio, rather than writing complex CSS or managing deep hierarchies.
+At its core, Auto Layout groups sibling widgets into a Container widget that arranges them along a horizontal or vertical axis. This approach leads to:
+- Flatter structures with fewer nested elements leading to cleaner widget trees.
+- Built-in responsiveness, reducing manual layout adjustments.
+
+## A Content-First Approach
+
+Auto Layout enables a content-first way of building layouts. Instead of starting with empty structural containers, you can begin with your actual content, the widgets themselves. To structure them in a layout, simply select the sibling widgets you want to group and add Auto Layout to them. They will be wrapped in a Container that will act as the parent frame for the layout and manage direction, alignment and spacing for the children. Creating the necessary layout structure around your content instantly.
+
+This approach makes it faster to design, develop, and maintain complex interfaces while keeping your structure intuitive and clutter-free.
+
+## Using Auto Layout
+
+### Content First
+
+To apply Auto Layout using the content-first approach, start by selecting multiple sibling widgets on the canvas (hold **Shift** and click to multi-select). Once selected, you can either:
+
+1. Right-click the selection and choose **Add Auto Layout** from the context menu.
+
+
+
+2. Or, with the selection active, click **Add Auto Layout** in the Properties panel.
+
+
+
+This wraps your selected widgets into a new Container widget. You can manage the layout using the properties available in the layout section of Properties panel of the newly created Container widget.
+
+### Container First
+
+Alternatively, if you have an existing Container widget, you can drag widgets into it. The container will automatically arrange the child widgets based on the configured properties.
+
+
+
+## Auto Layout Properties
+To configure the layout of a Container widget, several properties are available in the layout section of its Properties panel.
+
+
+
+### Direction
+
+The **Direction** property sets the main axis along which child widgets flow.
+
+* **Row**: Children arrange horizontally.
+* **Column**: Children stack vertically.
+
+
+
+### Wrap
+
+The **Wrap** property is available when [direction](#direction) is set to `Row`. It controls whether child widgets should flow onto a new line when they exceed the available space along the row.
+
+* **Wrap Enabled**: If child widgets exceed the available width in a row, they will automatically move to the next line.
+* **Wrap Disabled** (Default): Child widgets will remain on a single line. If their combined width exceeds the available space, they will attempt to squeeze to fit, and if it can't be squeezed enough to fit then it overflows the container.
+
+> When Wrap is enabled, an additional spacing control ([Row Gap](#row-gap)) is available to adjust the spacing between lines.
+
+
+
+### Height & Width
+
+**Height** and **Width** control how the Container computes its size relative to its parent or children.
+
+* **Fill**: Expands to fill all available space in the parent Container.
+* **Hug**: Shrinks or grows to exactly fit the combined size of children (plus any spacing like [Gap](#gap), [Padding](#padding)).
+* **Fixed**: Sets a fixed size. Accepts numbers (defaults to `px`) or numbers with units (`px`, `%`, `vw`, `vh`).
+
+
+
+### Alignment
+
+**Alignment** determines how child widgets are positioned within the available space of the parent container, both along the main axis (defined by [Direction](#direction)) and the cross axis.
+
+The available alignment options are based on the [Gap](#gap) and [Row Gap](#row-gap) values:
+
+* **Fixed Spacing**: When both [Gap](#gap) and [Row Gap](#row-gap) are set to fixed numeric values, you have full control over alignment. This allows precise positioning using a 3x3 grid of options (e.g., Top-Left, Middle-Center, Bottom-Right etc).
+
+
+
+* **[Gap](#gap) is `Auto`**: If [Gap](#gap) is set to `Auto`, the available space along the main axis is automatically distributed evenly between child widgets. This removes explicit alignment control along the main axis, but cross-axis alignment (Start, Center, End) remains available.
+
+
+
+* **[Row Gap](#row-gap) is `Auto`**: Similar to [Gap](#gap), if [Row Gap](#row-gap) is set to `Auto`, the available space along the cross axis is automatically distributed evenly between rows. This removes explicit alignment control along the cross axis.
+
+* **Both [Gap](#gap) and [Row Gap](#row-gap) are `Auto`**: When both are set to `Auto`, all available space in both directions is automatically managed, and explicit alignment options are no longer available.
+
+
+
+### Gap
+
+**Gap** defines the spacing between adjacent child widgets along the main axis.
+
+* **Number**: Sets a fixed size in pixels.
+* **Auto**: Automatically distributes available space evenly between all the child widgets.
+
+
+
+### Row Gap
+
+**Row Gap** defines the spacing between rows when **Wrap** is enabled.
+
+* **Number**: Sets a fixed value in pixels.
+* **Auto**: Automatically distributes available space evenly between all the rows.
+
+
+
+### Padding
+
+**Padding** adds space between the container's boundary and its children, similar to standard CSS padding. It accepts numerical values in pixels.
+
+In the Studio, padding can be configured in two ways:
+
+* **Two fields (default)**: One for `Horizontal` and one for `Vertical` padding.
+ * A single value (e.g., `10`) applies to both sides (e.g., `Left:10px`, `Right:10px`).
+ * Two comma-separated values (e.g., `10,20`) apply to each side respectively (e.g., `Left:10px`, `Right:20px`).
+* **Four fields**: A toggle allows switching to separate `Top`, `Right`, `Bottom`, and `Left` input fields for granular control.
+
+
+
+## Properties Reference
+| Prop Name | Possible Values | Description | CSS Equivalent |
+| :--- | :--- | :--- | :--- |
+| **[Direction](#direction)** | "row", "column" | Defines the primary axis along which children are laid out. 'row' arranges children horizontally, 'column' arranges them vertically. | `flex-direction` |
+| **[Wrap](#wrap)** | Enabled, Disabled | When `enabled`, children will wrap to the next line or column if they exceed the container's available space along the main axis. | `flex-wrap` |
+| **[Height & Width](#height--width)** | "fill", "hug", number, number with unit | Determines how the container's height and width are calculated. 'fill' expands to fill available space, 'hug' shrinks to fit its content, or a fixed value. | Uses a combination of `width`, `height`, `flex-basis`, `flex-grow`, `flex-shrink` |
+| **[Alignment](#alignment)** | 'top-left', 'top-center', 'top-right', 'middle-left', 'middle-center', 'middle-right', 'bottom-left', 'bottom-center', 'bottom-right' | A shorthand property that combines `justify-content` (main axis alignment) and `align-items` (cross axis alignment) for common layout patterns. | `justify-content`, `align-items` |
+| **[Gap](#gap)** | 'auto', number | Sets the spacing between child elements along the main axis. Can be a fixed pixel value or 'auto' to distribute available space evenly. | `gap` |
+| **[Row Gap](#row-gap)** | 'auto', number | Specifies the spacing between rows when `wrap` is enabled. This property is not available if `wrap` is `disabled`. | `row-gap` |
+| **[Padding](#padding)** | number, string (e.g., "10,20") | Adds internal spacing between the container's boundary and its content. | `padding` |
diff --git a/website/sidebars.json b/website/sidebars.json
index 7c5e73690..aecd9d6d0 100755
--- a/website/sidebars.json
+++ b/website/sidebars.json
@@ -945,12 +945,19 @@
"label": "Design and Theming",
"items": [
"react-native/styles",
+ {
+ "type": "category",
+ "label": "Layout",
+ "items": [
+ "react-native/auto-layout",
+ "react-native/edge-to-edge-layout"
+ ]
+ },
"react-native/theme",
"react-native/custom-icon-fonts",
"react-native/splash-screen",
"react-native/progress-loader",
"react-native/skeleton-loader",
- "react-native/edge-to-edge-layout",
"react-native/animations",
"react-native/accessibility-support-react-native"
]
diff --git a/website/static/learn/assets/autolayout/common/alignment-auto-column.png b/website/static/learn/assets/autolayout/common/alignment-auto-column.png
new file mode 100644
index 000000000..8503ef9eb
Binary files /dev/null and b/website/static/learn/assets/autolayout/common/alignment-auto-column.png differ
diff --git a/website/static/learn/assets/autolayout/common/alignment-auto-row.png b/website/static/learn/assets/autolayout/common/alignment-auto-row.png
new file mode 100644
index 000000000..5fe5f20bf
Binary files /dev/null and b/website/static/learn/assets/autolayout/common/alignment-auto-row.png differ
diff --git a/website/static/learn/assets/autolayout/common/alignment-default-column.png b/website/static/learn/assets/autolayout/common/alignment-default-column.png
new file mode 100644
index 000000000..00f7101c0
Binary files /dev/null and b/website/static/learn/assets/autolayout/common/alignment-default-column.png differ
diff --git a/website/static/learn/assets/autolayout/common/alignment-default-row.png b/website/static/learn/assets/autolayout/common/alignment-default-row.png
new file mode 100644
index 000000000..1c452c418
Binary files /dev/null and b/website/static/learn/assets/autolayout/common/alignment-default-row.png differ
diff --git a/website/static/learn/assets/autolayout/common/autolayout-props.png b/website/static/learn/assets/autolayout/common/autolayout-props.png
new file mode 100644
index 000000000..2d4db1dc8
Binary files /dev/null and b/website/static/learn/assets/autolayout/common/autolayout-props.png differ
diff --git a/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-one.mp4 b/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-one.mp4
new file mode 100644
index 000000000..bf315d7cb
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-one.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-two.mp4 b/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-two.mp4
new file mode 100644
index 000000000..8c112d0a8
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/adding-autolayout-to-widgets-two.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/adding-widgets-to-autolayout.mp4 b/website/static/learn/assets/autolayout/web/adding-widgets-to-autolayout.mp4
new file mode 100644
index 000000000..ff6bc2e3c
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/adding-widgets-to-autolayout.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/alignment.mp4 b/website/static/learn/assets/autolayout/web/alignment.mp4
new file mode 100644
index 000000000..9f0f94d3b
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/alignment.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/autolayout-direction.mp4 b/website/static/learn/assets/autolayout/web/autolayout-direction.mp4
new file mode 100644
index 000000000..d106814fc
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/autolayout-direction.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/autolayout-wrap.mp4 b/website/static/learn/assets/autolayout/web/autolayout-wrap.mp4
new file mode 100644
index 000000000..b508e8e07
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/autolayout-wrap.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/gap.mp4 b/website/static/learn/assets/autolayout/web/gap.mp4
new file mode 100644
index 000000000..268ce7e9e
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/gap.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/padding.mp4 b/website/static/learn/assets/autolayout/web/padding.mp4
new file mode 100644
index 000000000..155e5c9f7
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/padding.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/row-gap.mp4 b/website/static/learn/assets/autolayout/web/row-gap.mp4
new file mode 100644
index 000000000..bcd407a2f
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/row-gap.mp4 differ
diff --git a/website/static/learn/assets/autolayout/web/width.mp4 b/website/static/learn/assets/autolayout/web/width.mp4
new file mode 100644
index 000000000..5ad1970e2
Binary files /dev/null and b/website/static/learn/assets/autolayout/web/width.mp4 differ
diff --git a/website/static/learn/assets/release-notes/style-worspace-studio-ui.png b/website/static/learn/assets/release-notes/style-worspace-studio-ui.png
new file mode 100644
index 000000000..dd0fc8579
Binary files /dev/null and b/website/static/learn/assets/release-notes/style-worspace-studio-ui.png differ