gpt4 book ai didi

css - 如何在 nativescript 中为 stacklayout 提供边框和边框半径

转载 作者:技术小花猫 更新时间:2023-10-29 11:17:28 25 4
gpt4 key购买 nike

我是 nativescript 的新手。我不知道如何为 stacklayout 提供 border 和 border-radius。

下面我发布了到目前为止我尝试过的内容:

组件.html:

 <StackLayout class ="stackBorder" orientation="horizontal">
<Label text="Label 1" width="50" height="50" > </Label>
<Label text="Label 2" width="50" height="50" > </Label>
<Label text="Label 3" width="50" height="50" backgroundColor="white"> </Label>
<Label text="Label 4" width="50" height="50" backgroundColor="white"> </Label>
</StackLayout>

组件.css:

StackLayout {
margin: 10;
background-color: green;

}

.stackBorder {
border: 2px solid red;
border-radius: 8px;
}

组件.ts:

@Component({
selector: "sdk-child-component",
moduleId: module.id,
templateUrl: "./component.html",
styleUrls: ["./component.css"]
})

最后我无法在 stacklayout 中看到边框。

最佳答案

通过 html:

<StackLayout borderRadius="30" borderColor="red" borderWidth="3"></StackLayout>

通过 css:

StackLayout {
border-color: red;
border-width: 3;
border-radius: 30;
}

更多详情:https://docs.nativescript.org/ui-and-styling.html#supported-css-properties

关于css - 如何在 nativescript 中为 stacklayout 提供边框和边框半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44180779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com