Xamarin.Forms.InputKit icon indicating copy to clipboard operation
Xamarin.Forms.InputKit copied to clipboard

Advanced Entry Alignment Issue and Title Font Size does not change

Open ShamineDsouza opened this issue 5 years ago • 5 comments
trafficstars

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 .

ShamineDsouza avatar Sep 23 '20 12:09 ShamineDsouza

Duplicate of #202

enisn avatar Sep 23 '20 20:09 enisn

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

ShamineDsouza avatar Oct 01 '20 08:10 ShamineDsouza

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

causapablo avatar Jan 18 '23 13:01 causapablo

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>

enisn avatar Jan 18 '23 15:01 enisn

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

causapablo avatar Jan 18 '23 16:01 causapablo