enisn / Xamarin.Forms.InputKit

CheckBox, Radio Button, Labeled Slider, Dropdowns etc.
MIT License
586 stars 100 forks source link

Advanced Entry Alignment Issue and Title Font Size does not change #201

Open ShamineDsouza opened 3 years ago

ShamineDsouza commented 3 years ago

There is an issue with , text alignment inside advanced entry in IOS . Dropdown text remain left aligned advanced entry remain right aligned , irrespective of language . It works fine in Android .

Also can you add a Title Font Size sort of property , Because I have increased the text font size of the control, But the label header font Size remains very small .

enisn commented 3 years ago

Duplicate of #202

ShamineDsouza commented 3 years ago

HI any updates on the text alignment in the advanced entry control ?

causapablo commented 1 year ago

How do I change the font size of the title in the AdvancedEntry? I need it urgently. Thanks.

enisn commented 1 year ago

How do I change the font size of the title in the AdvancedEntry? I need it urgently. Thanks.

Unfortunetely there is no property to set it currently. But you can try the following way:

<input:AdvancedEntry Title"Username">
    <input:AdvancedEntry.Resources>
        <Style TargetType="Label">
            <Setter Property="FontSize" Value="24" />
        </Style>
    </input:AdvancedEntry.Resources>
</input:AdvancedEntry>
causapablo commented 1 year ago

Thanks a lot. It's useful. Bye for now.