enisn / UraniumUI

Uranium is a Free & Open-Source UI Kit for MAUI.
Apache License 2.0
985 stars 110 forks source link

Add a FontSize property to the AutoCompleteField, EditorField, and MultiplePickerField #620

Closed codychaplin closed 1 month ago

codychaplin commented 1 month ago

The TextField, PickerField, TimePickerField, and DatePickerField, all have a FontSizeProperty, yet the other input controls mentioned in the title do not. This would be greatly appreciated as it would add more consistency to the input fields. Love everything about UraniumUI, keep up the great work!

Cheers

enisn commented 1 month ago

Hi,

With the PR https://github.com/enisn/UraniumUI/pull/631, it'll be possible with styling:

<Style TargetType="Label" Class="InputField.Title">
    <Setter Property="FontSize" Value="Large" />
    <!--...-->
</Style>

It'll be released soon

codychaplin commented 1 month ago

Amazing, thanks!