我正在使用角度2构建第一个nativescript应用程序。
我创建了一个简单的stackView来查看一些项目内容:
<StackLayout orientation="vertical" class="item-section">
<Image [src]="item.image" width="80%" class="item-image"></Image>
<label>{{item.title}}</label>
<label text="{{ item.title }}" class="item-title"></label>
<label text="{{ item.subtitle }}" class="item-subtitle"></label>
<label text="{{ item.date }}" class="item-date"></label>
<label text="{{ item.description }}" textWrap="true" class="item-description"></label>
<label text="Google maps" ></label>
</StackLayout>
有时,item.description比屏幕显示更长且更大。在这种情况下,我无法向下滚动以查看说明的结尾。如何才能最好地显示所有内容?
注意:我创建了一个列表视图,所有内容都可以通过滚动显示。
答案 0 :(得分:0)
我能够通过在滚动视图中包装描述来回答:
https://docs.nativescript.org/angular/code-samples/ui/scroll-view.html