test page added

This commit is contained in:
Vladimir Enchev
2015-11-06 13:26:05 +02:00
parent f2db20c694
commit 2432cf9d4d
2 changed files with 18 additions and 1 deletions

View File

@ -21,6 +21,7 @@ Switch, Progress, Slider, SegmentedBar {
background-color: aquamarine;
}*/
/*
TextView, TextField, Label, Button {
text-decoration: underline;
}
}*/

View File

@ -0,0 +1,16 @@
<Page>
<StackLayout>
<Label text="Label" style="text-decoration:none" />
<Label text="Label" style="text-decoration:underline" />
<Label text="Label" style="text-decoration:line-through" />
<TextField text="TextField" style="text-decoration:none" />
<TextField text="TextField" style="text-decoration:underline" />
<TextField text="TextField" style="text-decoration:line-through" />
<TextView text="TextView" style="text-decoration:none" />
<TextView text="TextView" style="text-decoration:underline" />
<TextView text="TextView" style="text-decoration:line-through" />
<Button text="Button" style="text-decoration:none" />
<Button text="Button" style="text-decoration:underline" />
<Button text="Button" style="text-decoration:line-through" />
</StackLayout>
</Page>