mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Include new examples for font-weight (#4616)
This commit is contained in:
36
apps/app/ui-tests-app/font/fonts-weight/courier-new.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/courier-new.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns='http://schemas.nativescript.org/tns.xsd' class='page'>
|
||||||
|
<ActionBar title="Courier New"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns='* *'>
|
||||||
|
<StackLayout>
|
||||||
|
<Label text='sample' style='font-family: "Courier New";'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 100;' text='sample - 100' />
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 200;' text='sample - 200' />
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 300;' text='sample - 300' />
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 400;' text='sample - 400'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: normal;' text='sample - normal'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 500;' text='sample - 500'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 600;' text='sample - 600'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 700;' text='sample - 700'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: bold;' text='sample - bold'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 800;' text='sample - 800'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-weight: 900;' text='sample - 900'/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col='1'>
|
||||||
|
<Label text='sample' style='font-family: "Courier New"; font-style: italic;'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 100;' text='sample - 100' />
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 200;' text='sample - 200' />
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 300;' text='sample - 300' />
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 400;' text='sample - 400'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: normal;' text='sample - normal'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 500;' text='sample - 500'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 600;' text='sample - 600'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 700;' text='sample - 700'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: bold;' text='sample - bold'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 800;' text='sample - 800'/>
|
||||||
|
<Label style='font-family: "Courier New"; font-style: italic; font-weight: 900;' text='sample - 900'/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Custom Font Awesome"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="I  " style="font-family: FontAwesome;"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 100;" text="I   - 100" />
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 200;" text="I   - 200" />
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 300;" text="I   - 300" />
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 400;" text="I   - 400"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: normal;" text="I   - normal"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 500;" text="I   - 500"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 600;" text="I   - 600"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 700;" text="I   - 700"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: bold;" text="I   - bold"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 800;" text="I   - 800"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-weight: 900;" text="I   - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="I  " style="font-family: FontAwesome; font-style: italic;"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 100;" text="I   - 100" />
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 200;" text="I   - 200" />
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 300;" text="I   - 300" />
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 400;" text="I   - 400"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: normal;" text="I   - normal"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 500;" text="I   - 500"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 600;" text="I   - 600"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 700;" text="I   - 700"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: bold;" text="I   - bold"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 800;" text="I   - 800"/>
|
||||||
|
<Label style="font-family: FontAwesome; font-style: italic; font-weight: 900;" text="I   - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/custom-muli.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/custom-muli.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Custom Muli"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: Muli;"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Muli; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Muli; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Muli; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Muli; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: Muli; font-style: italic;"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Muli; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/custom-sofia.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/custom-sofia.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Custom Sofia"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: Sofia;"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Sofia; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Sofia; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Sofia; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Sofia; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: Sofia; font-style: italic;"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Sofia; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/font-fallback.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/font-fallback.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Font Fallback"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: UnexistingFont, serif;"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: UnexistingFont, serif; font-style: italic;"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: UnexistingFont, serif; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/helvetica.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/helvetica.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Helvetica"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: Helvetica;"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Helvetica; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: Helvetica; font-style: italic;"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: Helvetica; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
26
apps/app/ui-tests-app/font/fonts-weight/main-page.ts
Normal file
26
apps/app/ui-tests-app/font/fonts-weight/main-page.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { EventData } from "tns-core-modules/data/observable";
|
||||||
|
import { SubMainPageViewModel } from "../../sub-main-page-view-model";
|
||||||
|
import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout";
|
||||||
|
import { Page } from "tns-core-modules/ui/page";
|
||||||
|
|
||||||
|
export function pageLoaded(args: EventData) {
|
||||||
|
const page = <Page>args.object;
|
||||||
|
const wrapLayout = <WrapLayout>page.getViewById("wrapLayoutWithExamples");
|
||||||
|
page.bindingContext = new SubMainPageViewModel(wrapLayout, loadExamples());
|
||||||
|
}
|
||||||
|
|
||||||
|
export function loadExamples() {
|
||||||
|
const examples = new Map<string, string>();
|
||||||
|
examples.set("system", "font/fonts-weight/system");
|
||||||
|
examples.set("sans-serif", "font/fonts-weight/sans-serif");
|
||||||
|
examples.set("serif", "font/fonts-weight/serif");
|
||||||
|
examples.set("monospace", "font/fonts-weight/monospace");
|
||||||
|
examples.set("courier-new", "font/fonts-weight/courier-new");
|
||||||
|
examples.set("helvetica", "font/fonts-weight/helvetica");
|
||||||
|
examples.set("custom-fontawesome", "font/fonts-weight/custom-fontawesome");
|
||||||
|
examples.set("custom-muli", "font/fonts-weight/custom-muli");
|
||||||
|
examples.set("custom-sofia", "font/fonts-weight/custom-sofia");
|
||||||
|
examples.set("font-fallback", "font/fonts-weight/font-fallback");
|
||||||
|
|
||||||
|
return examples;
|
||||||
|
}
|
6
apps/app/ui-tests-app/font/fonts-weight/main-page.xml
Normal file
6
apps/app/ui-tests-app/font/fonts-weight/main-page.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<Page loaded="pageLoaded">
|
||||||
|
<ScrollView orientation="vertical" row="1">
|
||||||
|
<WrapLayout id="wrapLayoutWithExamples"/>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/monospace.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/monospace.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Monospace"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: monospace;"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: monospace; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: monospace; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: monospace; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: monospace; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: monospace; font-style: italic;"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: monospace; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/no-family.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/no-family.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="No Font Family"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample"/>
|
||||||
|
<Label style="font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-style: italic;"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/sans-serif.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/sans-serif.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Sans Serif"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: sans-serif;"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: sans-serif; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: sans-serif; font-style: italic;"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: sans-serif; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/serif.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/serif.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="Serif"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: serif;"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: serif; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: serif; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: serif; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: serif; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: serif; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: serif; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: serif; font-style: italic;"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: serif; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
36
apps/app/ui-tests-app/font/fonts-weight/system.xml
Normal file
36
apps/app/ui-tests-app/font/fonts-weight/system.xml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||||
|
<ActionBar title="System"/>
|
||||||
|
<ScrollView>
|
||||||
|
<GridLayout columns="* *">
|
||||||
|
<StackLayout>
|
||||||
|
<Label text="sample" style="font-family: system;"/>
|
||||||
|
<Label style="font-family: system; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: system; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: system; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: system; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: system; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: system; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: system; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: system; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: system; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: system; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: system; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
|
||||||
|
<StackLayout col="1">
|
||||||
|
<Label text="sample" style="font-family: system; font-style: italic;"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 100;" text="sample - 100" />
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 200;" text="sample - 200" />
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 300;" text="sample - 300" />
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 400;" text="sample - 400"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: normal;" text="sample - normal"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 500;" text="sample - 500"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 600;" text="sample - 600"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 700;" text="sample - 700"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: bold;" text="sample - bold"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 800;" text="sample - 800"/>
|
||||||
|
<Label style="font-family: system; font-style: italic; font-weight: 900;" text="sample - 900"/>
|
||||||
|
</StackLayout>
|
||||||
|
</GridLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</Page>
|
@ -15,10 +15,11 @@ export function loadExamples() {
|
|||||||
examples.set("fontlbl", "font/label");
|
examples.set("fontlbl", "font/label");
|
||||||
examples.set("fontfield", "font/text-field");
|
examples.set("fontfield", "font/text-field");
|
||||||
examples.set("fontview", "font/text-view");
|
examples.set("fontview", "font/text-view");
|
||||||
examples.set("nordic", "/font/nordic/nordic");
|
examples.set("nordic", "font/nordic/nordic");
|
||||||
examples.set("customfonts", "font/custom-fonts");
|
examples.set("customfonts", "font/custom-fonts");
|
||||||
examples.set("all-fonts", "font/all-fonts");
|
examples.set("all-fonts", "font/all-fonts");
|
||||||
examples.set("awesome-3654", "font/font-awesome/issue-3654");
|
examples.set("awesome-3654", "font/font-awesome/issue-3654");
|
||||||
|
examples.set("fonts-weight", "font/fonts-weight/main-page");
|
||||||
|
|
||||||
return examples;
|
return examples;
|
||||||
}
|
}
|
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Black.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Black.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-BlackItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-BlackItalic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Bold.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Bold.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-BoldItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-BoldItalic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraBold.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraBold.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraBoldItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraBoldItalic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraLight.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraLight.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraLightItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-ExtraLightItalic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Italic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Italic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Light.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Light.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-LightItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-LightItalic.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Regular.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-Regular.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-SemiBold.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-SemiBold.ttf
Executable file
Binary file not shown.
BIN
apps/app/ui-tests-app/resources/fonts/Muli-SemiBoldItalic.ttf
Executable file
BIN
apps/app/ui-tests-app/resources/fonts/Muli-SemiBoldItalic.ttf
Executable file
Binary file not shown.
Reference in New Issue
Block a user