mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
Update ui-tests-app
This commit is contained in:
@ -1,6 +1,12 @@
|
||||
<Page>
|
||||
<StackLayout>
|
||||
|
||||
<WrapLayout>
|
||||
<Label text="labelLabel" style="letter-spacing: -1;" />
|
||||
<Label text="labelLabel" style="letter-spacing: 0;" />
|
||||
<Label text="labelLabel" style="letter-spacing: 1;" />
|
||||
</WrapLayout>
|
||||
|
||||
<Label text="labelLabel" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
|
||||
<Label style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
|
||||
<Label.formattedText>
|
||||
@ -13,8 +19,14 @@
|
||||
</Label.formattedText>
|
||||
</Label>
|
||||
|
||||
<WrapLayout>
|
||||
<Button text="buttonButton" style="letter-spacing: -1;" />
|
||||
<Button text="buttonButton" style="letter-spacing: 0;" />
|
||||
<Button text="buttonButton" style="letter-spacing: 1;" />
|
||||
</WrapLayout>
|
||||
|
||||
<Button text="buttonButton" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
|
||||
<android>
|
||||
<!--<android>-->
|
||||
<Button style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
|
||||
<Button.formattedText>
|
||||
<FormattedString>
|
||||
@ -25,10 +37,16 @@
|
||||
</FormattedString>
|
||||
</Button.formattedText>
|
||||
</Button>
|
||||
</android>
|
||||
<!--</android>-->
|
||||
|
||||
<WrapLayout>
|
||||
<TextField text="textField" style="letter-spacing: -1;" />
|
||||
<TextField text="textField" style="letter-spacing: 0;" />
|
||||
<TextField text="textField" style="letter-spacing: 1;" />
|
||||
</WrapLayout>
|
||||
|
||||
<TextField text="textField" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
|
||||
<android>
|
||||
<!--<android>-->
|
||||
<TextField style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
|
||||
<TextField.formattedText>
|
||||
<FormattedString>
|
||||
@ -39,10 +57,16 @@
|
||||
</FormattedString>
|
||||
</TextField.formattedText>
|
||||
</TextField>
|
||||
</android>
|
||||
<!--</android>-->
|
||||
|
||||
<WrapLayout>
|
||||
<TextView text="textView" style="letter-spacing: -1;" />
|
||||
<TextView text="textView" style="letter-spacing: 0;" />
|
||||
<TextView text="textView" style="letter-spacing: 1;" />
|
||||
</WrapLayout>
|
||||
|
||||
<TextView text="textView" style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;" />
|
||||
<android>
|
||||
<!--<android>-->
|
||||
<TextView style="text-transform: uppercase; text-decoration: underline line-through; letter-spacing: 10;">
|
||||
<TextView.formattedText>
|
||||
<FormattedString>
|
||||
@ -53,7 +77,7 @@
|
||||
</FormattedString>
|
||||
</TextView.formattedText>
|
||||
</TextView>
|
||||
</android>
|
||||
<!--</android>-->
|
||||
|
||||
</StackLayout>
|
||||
</Page>
|
@ -38,6 +38,7 @@ examples.set("xmlbasics", "bindings/xmlbasics");
|
||||
|
||||
examples.set("background", "css/background");
|
||||
examples.set("formatted", "css/decoration-transform-formattedtext");
|
||||
examples.set("spacing", "css/letter-spacing");
|
||||
examples.set("decoration", "css/text-decoration");
|
||||
examples.set("transform", "css/text-transform");
|
||||
examples.set("whitespace", "css/white-space");
|
||||
|
Reference in New Issue
Block a user