mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-19 14:20:22 +08:00
21 lines
599 B
TypeScript
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;
|
|
}
|