mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
test page added
This commit is contained in:
@ -21,6 +21,7 @@ Switch, Progress, Slider, SegmentedBar {
|
||||
background-color: aquamarine;
|
||||
}*/
|
||||
|
||||
/*
|
||||
TextView, TextField, Label, Button {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}*/
|
16
apps/gallery-app/text-decoration.xml
Normal file
16
apps/gallery-app/text-decoration.xml
Normal 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>
|
Reference in New Issue
Block a user