我正在使用带有 Angular 的 NativeScript,并且FlexboxLayout
在ScrollView
. 我创建了一些 css 类,例如margin-bottom-five
为某些元素添加边距。这个边距在里面被完全忽略了ScrollView
。
我认为这是导致这种行为的原因,因为在另一个有但没有边距的ScrollView
模板中可以完美地工作。我如何让它使用我在里面指定的边距?FlexboxLayout
ScrollView
ScrollView
<ActionBar class="action-bar">
<NavigationButton (tap)="router.back()" android.systemIcon="ic_menu_back"></NavigationButton>
<Label class="action-bar-title" text="Report"></Label>
</ActionBar>
<ScrollView orientation="vertical" class="page">
<FlexboxLayout flexDirection="column" justifyContent="center" alignItems="center">
<Label class="text-label margin-bottom-five" textWrap="true">
<FormattedString>
<Span text="Testing"></Span>
</FormattedString>
</Label>
<GridLayout *ngFor="let item of items" columns="*,auto,auto,auto,*" rows="auto">
<Label class="text-label lbl-size" text="{{item.name}}" col="1" textAlignment="center"></Label>
<Label class="text-label lbl-x-size" text="x" col="2" textAlignment="center"></Label>
<Label class="text-label lbl-size" text="{{item.date}}" col="3" textAlignment="center"></Label>
</GridLayout>
<Button text="Start Over" (tap)="startOver()" class="btn btn-start-over btn-primary">
</Button>
</FlexboxLayout>
</ScrollView>
CSS:
.margin-bottom-five{
margin-bottom: 5%;
}