I'm trying to style a button text colour but it wont change from blue. My html file:
<StackLayout>
<Label text="Username" textWrap="true"></Label>
<TextField hint="Enter Username" text=""></TextField>
<Label text="Password" textWrap="true"></Label>
<TextField hint="Enter your password." text="" secure="true"></TextField>
<Button text="Sign in"></Button>
</StackLayout>
CSS:
button {
color: #fff;
font-size: 14;
background-color: #000;
border-radius: 20;
text-transform: uppercase;
padding:10;
margin: 10 0;
}
however the button text colour always remains blue, and i can't seem to get it to be white.