chore: cleanup

This commit is contained in:
Nathan Walker
2020-07-23 14:03:37 -07:00
parent 6d039909af
commit 1e6fccf272
1534 changed files with 45656 additions and 45945 deletions

View File

@@ -0,0 +1,10 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<ActionBar>
<Label text="Screen Qualifiers"></Label>
</ActionBar>
<StackLayout>
<Label text="{{ currentDate }}" fontSize="20"/>
<Label text="IOS Page" backgroundColor="deepskyblue" fontSize="20"/>
</StackLayout>
</Page>

View File

@@ -0,0 +1,10 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<ActionBar>
<Label text="Screen Qualifiers"></Label>
</ActionBar>
<StackLayout>
<Label text="{{ currentDate }}" fontSize="20"/>
<Label text="LandScape Page" backgroundColor="deepskyblue" fontSize="20"/>
</StackLayout>
</Page>

View File

@@ -0,0 +1,10 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<ActionBar>
<Label text="Screen Qualifiers"></Label>
</ActionBar>
<StackLayout>
<Label text="{{ currentDate }}" fontSize="20"/>
<Label text="minWH 120 DIP Portrait Page" backgroundColor="deepskyblue" fontSize="20"/>
</StackLayout>
</Page>

View File

@@ -0,0 +1,10 @@
import { EventData } from '@nativescript/core/data/observable';
import { Observable } from '@nativescript/core/data/observable';
import { Page } from '@nativescript/core/ui/page';
export function pageLoaded(args: EventData) {
const page = <Page>args.object;
page.bindingContext = new Observable();
page.bindingContext.set('currentDate', 'No date for alternate screens!');
}

View File

@@ -0,0 +1,10 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<ActionBar>
<Label text="Screen Qualifiers"></Label>
</ActionBar>
<StackLayout>
<Label text="{{ currentDate }}" fontSize="20"/>
<Label text="minWH 360 DIP Page" backgroundColor="deepskyblue" fontSize="20"/>
</StackLayout>
</Page>

View File

@@ -0,0 +1,10 @@
import { EventData } from '@nativescript/core/data/observable';
import { Observable } from '@nativescript/core/data/observable';
import { Page } from '@nativescript/core/ui/page';
export function pageLoaded(args: EventData) {
const page = <Page>args.object;
page.bindingContext = new Observable();
page.bindingContext.set('currentDate', new Date());
}

View File

@@ -0,0 +1,10 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<ActionBar>
<Label text="Screen Qualifiers"></Label>
</ActionBar>
<StackLayout>
<Label text="{{ currentDate }}" fontSize="20"/>
<Label text="Default Page" backgroundColor="yellow" fontSize="20"/>
</StackLayout>
</Page>