Nativescript 6更新了样式

时间:2019-10-19 16:59:03

标签: nativescript

我刚刚更新到Nativescript 6,看来我的许多样式现在都很时髦。某处是否有重大变更列表?以下是一些示例:

  • 在iOS上,我的“后退”按钮从白色变为深色
  • 在Android中,所有嵌套的FlexboxLayout现在都未对齐
  • 一些在FlexboxLayout中并由height =“ 20” Stretch =“ aspectFit”设置的图像会填充整个容器,等等。

代码示例:

<FlexboxLayout
        flexDirection="row"
        class="title-bar"
        alignContent="center"
        justifyContent="space-between"
        ref="view"
    >
        <Label :text="title" class="title-bar-label" />

        <FlexboxLayout flexDirection="row">
            <Image
                src="res://share"
                stretch="aspectFit"
                width="25"
                height="30"
                marginRight="20"
                v-if="share"
                @tap="$emit('share')"

            />

            <Image src="res://title_logo" stretch="aspectFit" width="30"  />
        </FlexboxLayout>
    </FlexboxLayout>

0 个答案:

没有答案