diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..5c7247b40a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,7 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} \ No newline at end of file diff --git a/examples/Demo/FluentUI.Demo.Client/Documentation/Components/Stack/Examples/StackCustomized.razor b/examples/Demo/FluentUI.Demo.Client/Documentation/Components/Stack/Examples/StackCustomized.razor index e81de67c4e..4aa647796b 100644 --- a/examples/Demo/FluentUI.Demo.Client/Documentation/Components/Stack/Examples/StackCustomized.razor +++ b/examples/Demo/FluentUI.Demo.Client/Documentation/Components/Stack/Examples/StackCustomized.razor @@ -1,13 +1,16 @@ @namespace FluentUI.Demo.Shared

Alignment of the Stack content elements:

- + +

Result:

@@ -15,6 +18,7 @@ HorizontalAlignment="@Horizontal" VerticalAlignment="@Vertical" VerticalGap="20" + Reversed="@Reversed" Style="height: 200px" Class="container">
Vertical item 1
@@ -23,7 +27,8 @@ HorizontalAlignment="@Horizontal" VerticalAlignment="@Vertical" HorizontalGap="4" - class="container"> + Reversed="@Reversed" + Class="container">
Horizontal
item 1
Horizontal item 2
@@ -33,6 +38,7 @@ { HorizontalAlignment Horizontal; VerticalAlignment Vertical; + bool Reversed; }