如何在 nativescript-angular html 文件中添加水平线

how to add horizontal line in nativescript-angular html file

我在 nativescript-angular 的组件 html 文件中尝试了 "hr" 标签。但它没有在模拟器中显示水平线。 (使用 ios 模拟器测试)

  <StackLayout>
     hr>
     <Label horizontalAlignment="left" textWrap="true" text="Description" class="description-text"></Label>
     </StackLayout>

hr 不应该作为 StackLayout 中的 class 吗?

喜欢<StackLayout class="hr-light">...

Reference

<Label class="line" text="About"></Label>

//给底边框

.about-heading{
    font-size: 19;
    padding: 5 18;
    border-color: #3BEC9C;
    border-width: 0 0 2 0;
}

//给上边框

.about-heading{
    font-size: 19;
    padding: 5 18;
    border-color: #3BEC9C;
    border-width: 2 0 0 0;
}