0

我正在使用带有 Angular 的 NativeScript,并且FlexboxLayoutScrollView. 我创建了一些 css 类,例如margin-bottom-five为某些元素添加边距。这个边距在里面被完全忽略了ScrollView

我认为这是导致这种行为的原因,因为在另一个有但没有边距的ScrollView模板中可以完美地工作。我如何让它使用我在里面指定的边距?FlexboxLayoutScrollViewScrollView

<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%;
}
4

1 回答 1

0

我认为该百分比在这里不起作用,请尝试将其更改为

.margin-bottom-five{ margin-bottom: 5; }

于 2018-07-17T20:33:21.610 回答