我正在尝试在 NativeScript Angular 应用程序的 ActionBar 上添加一个带有自定义字体的按钮。这是我到目前为止所尝试的:
<ActionBar class="cp-icon">
<NavigationButton text="" (tap)="goBack()"></NavigationButton>
<Image src="res://logo_h_white"></Image>
</ActionBar>
// Or one of these optio
<ActionItem text="" (tap)="goBack()"></ActionItem>
<Label text=""></Label>
<Button text=""></Button>
但他们似乎都没有工作。我确实安装了字体,因为我可以在视图中使用。此外,如果我只是将文本属性更改为字符串而不是图标,它也不会显示任何内容。
有没有办法做到这一点?