Files
NativeScript/apps/automated/app/ui/root-view/mymodule/MyControl.ts
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

26 lines
662 B
TypeScript

import { EventData } from '@nativescript/core';
import * as stackLayoutModule from '@nativescript/core/ui/layouts/stack-layout';
import * as label from '@nativescript/core/ui/label';
import * as button from '@nativescript/core/ui/button';
export class MyControl extends stackLayoutModule.StackLayout {
constructor() {
super();
var counter: number = 0;
var lbl = new label.Label();
lbl.id = 'my-test-label';
var btn = new button.Button();
btn.text = 'Tap me!';
btn.on(button.Button.tapEvent, (args: EventData) => {
lbl.text = 'Tap ' + counter++;
});
this.addChild(lbl);
this.addChild(btn);
this.className = 'MyStackLayout';
}
}