我想对本机脚本选项卡视图使用一些fa图标,而不是标题名称,因此: * tabItem =“ {title:''}。我导入ttf文件te fonts目录,将类添加到app.css,将类名称添加到模板,但仍然得到“ x”而不是图标。教程,但仍然没有变化。还有其他事情要做吗?
模板:
<TabView androidSelectedTabHighlightColor="blue" id="tview" backgroundColor="gray" androidTabsPosition="bottom" #tabView (selectedIndexChanged)="tabIndexChanged($event)" (swipe)="onSwipe($event)">
<StackLayout *tabItem="{title: ''}" class="fa">
<home-tab></home-tab>
</StackLayout>
<StackLayout *tabItem="{title: 'Configuration'}" class="fa">
<configuration-tab></configuration-tab>
</StackLayout>
</TabView>
app.css:
.fa {
font-family: 'FontAwesome', fontawesome-webfont
}