Skip to content

Commit

Permalink
feat: add no gap to Flex example (#7899)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackySoul authored Nov 5, 2024
1 parent 5640748 commit 43c2619
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions packages/vkui/src/components/Flex/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,17 +142,35 @@ const Example = () => {
</Checkbox>
{!complexGap && (
<FormItem top="gap">
<Select value={gap} onChange={setGap} options={GapSelectValues} />
<Select
value={gap}
placeholder="Не выбрано"
onChange={setGap}
options={GapSelectValues}
allowClearButton
/>
</FormItem>
)}
{complexGap && (
<FormItem top="row gap">
<Select value={rowGap} onChange={setRowGap} options={GapSelectValues} />
<Select
value={rowGap}
placeholder="Не выбрано"
onChange={setRowGap}
options={GapSelectValues}
allowClearButton
/>
</FormItem>
)}
{complexGap && (
<FormItem top="column gap">
<Select value={columnGap} onChange={setColumnGap} options={GapSelectValues} />
<Select
value={columnGap}
placeholder="Не выбрано"
onChange={setColumnGap}
options={GapSelectValues}
allowClearButton
/>
</FormItem>
)}
<FormItem top="align">
Expand Down

0 comments on commit 43c2619

Please sign in to comment.