import * as buttonModule from '@nativescript/core/ui/button'; import * as stackLayoutModule from '@nativescript/core/ui/layouts/stack-layout'; import * as textFieldModule from '@nativescript/core/ui/text-field'; import * as observable from '@nativescript/core/data/observable'; export function stack0Loaded(args: observable.EventData) { var source = new observable.Observable(); var stack0 = args.object; var target = stack0.getViewById('tf'); var button = stack0.getViewById('btn'); var bindingOptions = { sourceProperty: 'textSource', targetProperty: 'text', // , // twoWay: true }; target.bind(bindingOptions, source); source.set('textSource', 'Text'); button.on(buttonModule.Button.tapEvent, function () { button.text = source.get('textSource'); }); } export function stack1Loaded(args: observable.EventData) { var stack1 = args.object; stack1.bindingContext = { text: 'Label' }; } export function stack2Loaded(args: observable.EventData) { var stack2 = args.object; stack2.bindingContext = { myProperty: 'Button', myFunction: () => { console.log('### onTap event ###'); }, }; } export function stack3Loaded(args: observable.EventData) { var stack3 = args.object; stack3.bindingContext = { myItems: [{ text: 'Label1' }, { text: 'Label2' }] }; }