我正在尝试将fontawsome
图标添加到我的Xamarin forms
项目中。我正在执行this tutorial to do so。但是,当我使用以下代码时,
<Button.FontFamily>
<OnPlatform></OnPlatform>
</Button.FontFamily>
它显示了一个误差,即XLS0504 Property 'FontFamily' does not support values of type 'OnPlatform
1(T)'。
如何解决此错误?
Xamarin Version - 5.0.0.2012
1条答案
按热度按时间bz4sfanl1#
这是因为您需要将FontFamily指定为String
请尝试以下操作:
祝你好运!