Microsoft.Maui.Graphics.Controls
Microsoft.Maui.Graphics.Controls copied to clipboard
[Bug] Button doesn't display ImageSource
I have some buttons with icon fonts for the image source and the label. In neither case do they display.

<Label Text="Primary filled"/>
<StackLayout Orientation="Vertical">
<Button Text="Button"/>
<Button Text="Button" IsEnabled="False"/>
</StackLayout>
<VerticalStackLayout>
<Button ImageSource="{StaticResource CircleIcon}" Text="Button"/>
<Button ImageSource="{StaticResource CircleIcon}" Text="Button" IsEnabled="False"/>
</VerticalStackLayout>
<VerticalStackLayout>
<Button FontFamily="FontAwesome"
Text="{x:Static app:IconFont.Archway}"/>
<Button FontFamily="FontAwesome"
Text="{x:Static app:IconFont.Archway}"
IsEnabled="False"/>
</VerticalStackLayout>
Build 9.217 Fluent
For now, is expected because the ImageSource and font Icons are not implemented. We definitely have to implement this.
Hi @jsuarezruiz, Are you currently working on this implementation? 🙂
I have it in queue, but not right now.