首页 > 解决方案 > Nativescript 6 更新了破坏样式

问题描述

我刚刚更新到 Nativescript 6,看起来我的很多样式现在都很时髦。某处是否有重大更改列表?这里有些例子:

代码示例:

<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>

标签: nativescript

解决方案


推荐阅读