Skip to content

Commit 9368a72

Browse files
janoshrubosNathanWalker
authored andcommitted
chore: replace layout images (#8)
1 parent 555f99d commit 9368a72

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

ui-and-styling.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ The following example creates a simple grid. For more information about creating
129129
</AbsoluteLayout>
130130
```
131131

132-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/absolute_layout_grid.svg" />
132+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/absolute_layout_grid.svg" />
133133

134134
#### Example: Overlapping elements
135135

@@ -156,7 +156,7 @@ The following example creates a group of overlapping items.
156156
</AbsoluteLayout>
157157
```
158158

159-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/absolute_layout_overlap.svg" />
159+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/absolute_layout_overlap.svg" />
160160

161161
#### Props
162162

@@ -199,7 +199,7 @@ The following example creates a frame-like layout consisting of 4 elements, posi
199199
</DockLayout>
200200
```
201201

202-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/dock_layout_no_stretch.svg" />
202+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/dock_layout_no_stretch.svg" />
203203

204204
#### Example: Dock to every side and stretch the last child
205205

@@ -214,7 +214,7 @@ The following example shows how `stretchLastChild` affects the positioning of ch
214214
</DockLayout>
215215
```
216216

217-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/dock_layout_stretch.svg" />
217+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/dock_layout_stretch.svg" />
218218

219219
#### Example: Dock to every side and the center
220220

@@ -230,7 +230,7 @@ The following example creates a `<DockLayout>` of 5 elements. The first four wra
230230
</DockLayout>
231231
```
232232

233-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/dock_layout_all_sides_and_stretch.svg" />
233+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/dock_layout_all_sides_and_stretch.svg" />
234234

235235
#### Example: Dock multiple children to the same side
236236

@@ -245,7 +245,7 @@ The following example creates a single line of 4 elements that stretch across th
245245
</DockLayout>
246246
```
247247

248-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/dock_layout_multiple_on_same_side.svg" />
248+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/dock_layout_multiple_on_same_side.svg" />
249249

250250
#### Props
251251

@@ -293,7 +293,7 @@ The following example creates a simple 2-by-2 grid with fixed column widths and
293293
</GridLayout>
294294
```
295295

296-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/grid_layout.svg" />
296+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/grid_layout.svg" />
297297

298298
#### Example: Grid layout with star sizing
299299

@@ -308,7 +308,7 @@ The following example creates a grid with responsive design, where space is allo
308308
</GridLayout>
309309
```
310310

311-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/grid_layout_star_sizing.svg" />
311+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/grid_layout_star_sizing.svg" />
312312

313313
#### Example: Grid layout with fixed and auto sizing
314314

@@ -323,7 +323,7 @@ The following example create a grid with one auto-sized column and one column wi
323323
</GridLayout>
324324
```
325325

326-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/grid_layout_fixed_auto.svg" />
326+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/grid_layout_fixed_auto.svg" />
327327

328328
#### Example: Grid layout with mixed sizing and merged cells
329329

@@ -341,7 +341,7 @@ The following example creates a complex grid with responsive design, mixed width
341341
</GridLayout>
342342
```
343343

344-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/grid_layout_complex.svg" />
344+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/grid_layout_complex.svg" />
345345

346346
#### Props
347347

@@ -386,7 +386,7 @@ The following example creates a vertical stack of 3 equally-sized elements. Item
386386
</StackLayout>
387387
```
388388

389-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/stack_layout_vertical.svg" />
389+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/stack_layout_vertical.svg" />
390390

391391
#### Example: Horizontal stacking
392392

@@ -400,7 +400,7 @@ The following example creates a horizontal stack of 3 equally-sized elements. It
400400
</StackLayout>
401401
```
402402

403-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/stack_layout_horizontal.svg" />
403+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/stack_layout_horizontal.svg" />
404404

405405
#### Example: Stack layout with horizontally aligned children
406406

@@ -438,7 +438,7 @@ The following example creates a diagonal stack of items with responsive sizes. I
438438
</StackLayout>
439439
```
440440

441-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/stack_layout_vertical_align_children.svg" />
441+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/stack_layout_vertical_align_children.svg" />
442442

443443
#### Example: Horizontal stack layout with vertically aligned children
444444

@@ -476,7 +476,7 @@ The following example creates a diagonal stack of items with responsive sizes. I
476476
</StackLayout>
477477
```
478478

479-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/stack_layout_horizontal_align_children.svg" />
479+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/stack_layout_horizontal_align_children.svg" />
480480

481481
#### Props
482482

@@ -624,7 +624,7 @@ The following example creates a row of equally-sized items. When the row runs ou
624624
</WrapLayout>
625625
```
626626

627-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/wrap_layout_horizontal.svg" />
627+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/wrap_layout_horizontal.svg" />
628628

629629
#### Example: Vertical wrap layout
630630

@@ -639,7 +639,7 @@ The following example creates a column of equally-sized items. When the row runs
639639
</WrapLayout>
640640
```
641641

642-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/wrap_layout_vertical.svg" />
642+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/wrap_layout_vertical.svg" />
643643

644644
#### Props
645645

@@ -672,7 +672,7 @@ The following example creates a row of three equally-sized elements that span ac
672672
</FlexboxLayout>
673673
```
674674

675-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_row_stretch.svg" />
675+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_row_stretch.svg" />
676676

677677
#### Example: Column flex layout
678678

@@ -686,7 +686,7 @@ The following example creates a column of three equally-sized elements that span
686686
</FlexboxLayout>
687687
```
688688

689-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_column_stretch.svg" />
689+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_column_stretch.svg" />
690690

691691
#### Example: Row flex layout with items aligned to `flex-start`
692692

@@ -700,7 +700,7 @@ The following example creates a row of three items placed at the top of the scre
700700
</FlexboxLayout>
701701
```
702702

703-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_row_flex-start.svg" />
703+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_row_flex-start.svg" />
704704

705705
#### Example: Row flex layout with custom order
706706

@@ -714,7 +714,7 @@ The following example creates a row of three items placed at the top of the scre
714714
</FlexboxLayout>
715715
```
716716

717-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_row_custom_order.svg" />
717+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_row_custom_order.svg" />
718718

719719
#### Example: Row flex layout with wrapping
720720

@@ -729,7 +729,7 @@ The following example creates four items with enabled line wrapping. When the ro
729729
</FlexboxLayout>
730730
```
731731

732-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_wrap.svg" />
732+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_wrap.svg" />
733733

734734
#### Example: Column flex layout with reverse order and items with a different `alignSelf`
735735

@@ -764,7 +764,7 @@ The following example shows how to use:
764764
</FlexboxLayout>
765765
```
766766

767-
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript-vue.org/layouts/flexbox_layout_column_reverse_space_around_align_self.svg" />
767+
<img class="md:w-1/2 lg:w-1/3" src="https://art.nativescript.org/layouts/flexbox_layout_column_reverse_space_around_align_self.svg" />
768768

769769
#### Props
770770

0 commit comments

Comments
 (0)