标签出现在模拟器中,但没有出现在android设备上,解决方案是什么?
我使用默认代码
预告片
<Label Text="Start developing now" FontSize="Title"/>
有时模拟器的配置与设备的配置不一致。
因此,有时某些组件的默认颜色取决于Theme
。
检查这一点的好方法是改变标签的BackgroundColor
?或者页面的TextColor
或BackgroundColor
我认为FontSize
属性可以直接设置为双精度值,或者通过NamedSize枚举值
<Label Text="Font size 24"
FontSize="24" />
<Label Text="Large font size"
FontSize="Large" />
查看这里的文档
你也可以通过改变背景颜色来检查