-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Stack): do not apply flex styles, when not needed
- Loading branch information
1 parent
f8e5798
commit 56983c1
Showing
447 changed files
with
102 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from "react"; | ||
|
||
import type { Props } from "./types"; | ||
|
||
import Stack from "."; | ||
|
||
export default function StackStory(props: Omit<Props, "children">) { | ||
return ( | ||
<Stack {...props}> | ||
<div className="bg-blue-normal text-white-normal flex h-[50px] items-center">First child</div> | ||
<div className="bg-blue-dark text-white-normal flex h-[70px] items-center">Second child</div> | ||
<div className="bg-blue-darker text-white-normal flex h-[90px] items-center">Third child</div> | ||
</Stack> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import * as React from "react"; | ||
import { test, expect } from "@playwright/experimental-ct-react"; | ||
|
||
import { DIRECTIONS, SPACINGS } from "../utils/layout/consts"; | ||
import { ALIGN } from "../common/tailwind/alignItems"; | ||
import StackStory from "./Stack.ct-story"; | ||
import { JUSTIFY } from "../common/tailwind/justify"; | ||
import Box from "../Box"; | ||
|
||
test.describe("visual Stack", () => { | ||
test(`Stack default`, async ({ mount }) => { | ||
const component = await mount(<StackStory />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
Object.values(SPACINGS).forEach(spacing => { | ||
test(`Stack with spacing ${spacing}`, async ({ mount }) => { | ||
const component = await mount(<StackStory spacing={spacing} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
test("Stack with inline", async ({ mount }) => { | ||
const component = await mount(<StackStory inline />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test("Stack with gap", async ({ mount }) => { | ||
const component = await mount(<StackStory flex legacy={false} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
Object.values(DIRECTIONS).forEach(direction => { | ||
test(`Stack with direction ${direction}`, async ({ mount }) => { | ||
const component = await mount(<StackStory direction={direction} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
Object.values(ALIGN).forEach(align => { | ||
test(`Stack with align ${align} and direction row`, async ({ mount }) => { | ||
const component = await mount(<StackStory align={align} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test(`Stack with align ${align} and direction column`, async ({ mount }) => { | ||
const component = await mount(<StackStory direction="column" align={align} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
|
||
Object.values(JUSTIFY).forEach(justify => { | ||
test(`Stack with justify ${justify} and direction row`, async ({ mount }) => { | ||
const component = await mount(<StackStory flex justify={justify} />); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
|
||
test(`Stack with justify ${justify} and direction column`, async ({ mount }) => { | ||
const component = await mount( | ||
<Box height="350px" background="cloudDark"> | ||
<StackStory flex direction="column" justify={justify} /> | ||
</Box>, | ||
); | ||
|
||
await expect(component).toHaveScreenshot(); | ||
}); | ||
}); | ||
}); |
Binary file added
BIN
+6.65 KB
...rc/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.26 KB
...src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.88 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.5 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.09 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.41 KB
...tack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.31 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.23 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.82 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.11 KB
...tack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10 KB
...src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.59 KB
.../src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.77 KB
...isual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.37 KB
...visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.01 KB
...Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.61 KB
...-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.14 KB
...-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.45 KB
...l-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.38 KB
...Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
...-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.81 KB
...-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.15 KB
...l-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10.1 KB
...visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.64 KB
.../visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.9 KB
...s/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-darwin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.34 KB
...ts/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.02 KB
...al-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.46 KB
...ual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.78 KB
...ual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.71 KB
...sual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.41 KB
...al-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.62 KB
...ual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
...ual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.55 KB
...sual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.18 KB
...ts/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.81 KB
...ots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+7 KB
.../visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.54 KB
...s/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.23 KB
...l-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.78 KB
...al-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.13 KB
...al-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.54 KB
...ual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.34 KB
...l-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.35 KB
...al-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.81 KB
...al-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.22 KB
...ual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.88 KB
...s/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.73 KB
...ts/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.9 KB
...ots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.34 KB
...hots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.02 KB
...sual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.46 KB
...isual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.78 KB
...isual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.71 KB
...visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.41 KB
...sual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.62 KB
...isual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
...isual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.55 KB
...visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.18 KB
...hots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.81 KB
...shots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.81 KB
...ots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.23 KB
...hots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.04 KB
...sual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.48 KB
...isual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.79 KB
...isual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.39 KB
...visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.06 KB
...sual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.21 KB
...isual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.58 KB
...isual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.08 KB
...visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.68 KB
...hots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.58 KB
...shots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.04 KB
...pshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.44 KB
...apshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
.../visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.57 KB
...s/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.95 KB
...s/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.75 KB
...ts/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.56 KB
.../visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.65 KB
...s/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
...s/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.58 KB
...ts/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.39 KB
...apshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.85 KB
...napshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
...s/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
...ts/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.01 KB
...al-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...ual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.14 KB
...ual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.45 KB
...sual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.38 KB
...al-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.27 KB
...ual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.81 KB
...ual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.15 KB
...sual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
...ts/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.64 KB
...ots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.03 KB
...hots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.49 KB
...shots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
...isual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.61 KB
...visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.8 KB
.../visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...isual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.7 KB
...visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
.../visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.38 KB
...shots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.9 KB
...pshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.65 KB
...visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.26 KB
.../visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.88 KB
...-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.5 KB
...l-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.09 KB
...l-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.41 KB
...al-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.31 KB
...-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.23 KB
...l-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.82 KB
...l-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.11 KB
...al-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+10 KB
.../visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.59 KB
...s/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.03 KB
...ts/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.49 KB
...ots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
...ual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.61 KB
...sual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...sual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.8 KB
...isual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...ual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.7 KB
...sual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...sual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...isual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.38 KB
...ots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.9 KB
...hots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
....ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
...k.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.01 KB
...x-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...sx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.14 KB
...sx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.45 KB
...tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.38 KB
...x-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.27 KB
...sx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.81 KB
...sx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.15 KB
...tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
...k.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.64 KB
...ck.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
...snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
...-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7 KB
...ots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...hots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.13 KB
...hots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.46 KB
...shots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.38 KB
...ots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.27 KB
...hots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.81 KB
...hots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.15 KB
...shots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
...-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.64 KB
...x-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.03 KB
...ack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.49 KB
...tack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
....tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.61 KB
...t.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...t.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.8 KB
...ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
....tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.7 KB
...t.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...t.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.38 KB
...tack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.9 KB
...Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.79 KB
...sx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.4 KB
...tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.91 KB
...pshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.52 KB
...apshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.95 KB
...apshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.76 KB
...napshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.57 KB
...pshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.66 KB
...apshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...apshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.6 KB
...napshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.33 KB
...tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.86 KB
....tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.03 KB
...c/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.49 KB
...rc/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
...k/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.61 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.8 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.61 KB
...k/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.7 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...ck/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...ack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.38 KB
...rc/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.9 KB
...src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.43 KB
...tack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.9 KB
...Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.43 KB
...tack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.9 KB
...Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
.../Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...tack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
...Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.23 KB
...Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
.../Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.23 KB
...Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.54 KB
.../Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.47 KB
...isual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
...visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.8 KB
...Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+7.1 KB
...-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.7 KB
...-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.26 KB
...l-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.64 KB
...Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5 KB
...-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.93 KB
...-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.83 KB
...l-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+12 KB
...visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.47 KB
.../visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.78 KB
...s/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.52 KB
...ts/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.13 KB
...al-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.61 KB
...ual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...ual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.85 KB
...sual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.58 KB
...al-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.75 KB
...ual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...ual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.75 KB
...sual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.4 KB
...ts/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
...ots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.45 KB
...sual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.76 KB
...isual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.79 KB
...tack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+7.09 KB
...Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.7 KB
...Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.25 KB
...-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.65 KB
...tack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.98 KB
...Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.94 KB
...Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.82 KB
...-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+12 KB
...isual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.45 KB
...visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.95 KB
.../visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.45 KB
...s/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.07 KB
...l-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.57 KB
...al-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.7 KB
...al-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.78 KB
...ual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.32 KB
...l-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...al-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.07 KB
...al-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.62 KB
...ual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.1 KB
...s/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.88 KB
...ts/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.48 KB
...isual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
...visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.8 KB
...Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+7.1 KB
...-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.7 KB
...-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.26 KB
...l-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.64 KB
...Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5 KB
...-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.88 KB
...-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.83 KB
...l-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
...visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.47 KB
.../visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.75 KB
...s/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.48 KB
...ts/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.86 KB
...al-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.59 KB
...ual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.96 KB
...ual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.91 KB
...sual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.59 KB
...al-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.81 KB
...ual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...ual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.76 KB
...sual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.32 KB
...ts/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.01 KB
...ots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.46 KB
...s/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+6.77 KB
...ts/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+7.79 KB
...al-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+7.1 KB
...ual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+10.6 KB
...ual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.25 KB
...sual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+9.55 KB
...al-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.99 KB
...ual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+8.78 KB
...ual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+4.83 KB
...sual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...ts/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.46 KB
...ots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.81 KB
...hots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.41 KB
...shots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+5.93 KB
...isual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-darwin.png
Oops, something went wrong.
Binary file added
BIN
+5.52 KB
...visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.73 KB
...visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.76 KB
.../visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.36 KB
...isual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.67 KB
...visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-linux.png
Oops, something went wrong.
Binary file added
BIN
+6.06 KB
...visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-darwin.png
Oops, something went wrong.
Binary file added
BIN
+3.61 KB
.../visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-linux.png
Oops, something went wrong.
Oops, something went wrong.