mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
import * as observable from "tns-core-modules/data/observable";
|
|
import * as trace from "tns-core-modules/trace";
|
|
trace.addCategories(trace.categories.Layout);
|
|
trace.enable();
|
|
|
|
export function onLoaded(args: observable.EventData) {
|
|
(<any>args.object).bindingContext = [0, 1];
|
|
}
|