Files
NativeScript/apps/app/ui-tests-app/events/i61.ts
SvetoslavTsenov 99611a9979 Include resource folder
Fix tslint error
2017-05-31 17:21:17 +03:00

21 lines
599 B
TypeScript

import * as pages from "tns-core-modules/ui/page";
import * as button from "tns-core-modules/ui/button";
import * as panelModule from "tns-core-modules/ui/layouts/stack-layout";
export function createPage() {
// https://github.com/NativeScript/cross-platform-modules/issues/61
var stackPanel = new panelModule.StackLayout();
stackPanel.id = "stackPanel";
var btn = new button.Button();
btn.text = "getViewById";
var page = new pages.Page();
page.content = stackPanel;
page.getViewById<panelModule.StackLayout>("stackPanel").addChild(btn);
return page;
}