Skip to content

Commit 0715096

Browse files
committed
Fixes issue with vue demo on android where list is cut off
1 parent 9f6e9d5 commit 0715096

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

demo-vue/app/views/Home.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ export default {
88
</ActionBar>
99
<ListView ref="listView" rowHeight="50" for="example in examples">
1010
<v-template>
11-
<MDRipple rippleColor="red" @tap="{goToExample(example)}" @longPress="{goToModalExample(example)}" >
12-
<StackLayout class="item" orientation="horizontal" height="40">
11+
<MDRipple rippleColor="red" @tap="{goToExample(example)}" @longPress="{goToModalExample(example)}" >
1312
<Label paddingLeft="10" :text="example.title" class="title" verticalAlignment="center"/>
14-
</StackLayout>
1513
</MDRipple>
16-
</v-template>
14+
</v-template>
1715
</ListView>
1816
</Page>
1917
`,

0 commit comments

Comments
 (0)