enisn / UraniumUI

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

Fix Border bindings of InputField #778

Closed enisn closed 2 months ago

enisn commented 2 months ago

Resolves https://github.com/enisn/UraniumUI/issues/775


<StackLayout Spacing="10">
    <material:TextField
    BorderColor="DarkGoldenrod"
    AccentColor="Yellow"
    InputBackgroundColor="Black"
    Title="Username"
    Keyboard="Default"
    AutomationId="Login" />

    <material:TextField
    BorderColor="Green"
    AccentColor="Red"
    InputBackgroundColor="White"
    Title="Some other field"
    Keyboard="Default" />

    <material:TextField
    BorderColor="DarkGoldenrod"
    AccentColor="Yellow"
    InputBackgroundColor="Black"
    Title="Password"
    Keyboard="Default"
    IsPassword="True"
    AutomationId="Password" />
</StackLayout>

image