|
| 1 | +<script lang="ts" setup> |
| 2 | +
|
| 3 | +</script> |
| 4 | + |
| 5 | +<template> |
| 6 | + <Page> |
| 7 | + <GridLayout rows="*, 50, 300, *"> |
| 8 | + <ScrollView orientation="horizontal" row="1"> |
| 9 | + <StackLayout orientation="horizontal" padding="12"> |
| 10 | + <Label text="h1" width="50"></Label> |
| 11 | + <Label text="h2" width="50"></Label> |
| 12 | + <Label text="h3" width="50"></Label> |
| 13 | + <Label text="h4" width="50"></Label> |
| 14 | + <Label text="h5" width="50"></Label> |
| 15 | + <Label text="h6" width="50"></Label> |
| 16 | + <Label text="h7" width="50"></Label> |
| 17 | + <Label text="h8" width="50"></Label> |
| 18 | + <Label text="h9" width="50"></Label> |
| 19 | + </StackLayout> |
| 20 | + </ScrollView> |
| 21 | + |
| 22 | + <ContentView row="2"> |
| 23 | + <!-- #region example --> |
| 24 | + <ScrollView> |
| 25 | + <StackLayout padding="12"> |
| 26 | + <Label text="v1" height="50"></Label> |
| 27 | + <Label text="v2" height="50"></Label> |
| 28 | + <Label text="v3" height="50"></Label> |
| 29 | + <Label text="v4" height="50"></Label> |
| 30 | + <Label text="v5" height="50"></Label> |
| 31 | + <Label text="v6" height="50"></Label> |
| 32 | + <Label text="v7" height="50"></Label> |
| 33 | + <Label text="v8" height="50"></Label> |
| 34 | + <Label text="v9" height="50"></Label> |
| 35 | + </StackLayout> |
| 36 | + </ScrollView> |
| 37 | + <!-- #endregion example --> |
| 38 | + </ContentView> |
| 39 | + </GridLayout> |
| 40 | + </Page> |
| 41 | +</template> |
0 commit comments