2

我一直在寻找一种干净的方式来使用字体图标(在我的情况下为 iconmoon),TabViewItem但没有找到答案。有谁知道该怎么做?

我正在使用NativeScript-Vue。理想的方法是iconSource使用字体图标更改 ,但它不起作用。就像是:iconSource="String.fromCharCode(0xea0d)"

我正在使用的代码如下(而不是labelsframes在 each中TabViewItem)。

<TabView :selectedIndex="selectedIndex" iosIconRenderingMode="alwaysOriginal">
  <TabViewItem title="Tab 1" iconSource="~/images/icon.png">
    <Label text="Content for Tab 1" />
  </TabViewItem>
  <TabViewItem title="Tab 2" iconSource="~/images/icon.png">
    <Label text="Content for Tab 2" />
  </TabViewItem>
</TabView>
4

1 回答 1

1

不能在 上使用字体图标iconSource,它只接受图像。

但是您可以在title属性上使用字体图标,但这可能会阻止您使用不同的字体设置标题的样式,或者您可以使用nativescript-vector-icons可以将字体图标即时转换为图像并将其应用于iconSource.

于 2019-01-24T06:58:06.677 回答