【发布时间】:2020-08-15 11:21:10
【问题描述】:
我想知道如何使用 nativescript 在滚动视图中实现多个全屏?
我试过这个:
<Page actionBarHidden="true" class="page">
<ScrollView orientation="vertical">
<StackLayout>
<StackLayout height="100%" backgroundColor="red">
<Label text="Fullscreen 1"></Label>
</StackLayout>
<StackLayout height="100%" backgroundColor="blue">
<Label text="Fullscreen 2"></Label>
</StackLayout>
</StackLayout>
</ScrollView>
</Page>
但堆栈不是全屏的。
【问题讨论】:
标签: nativescript nativescript-vue