mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
import placeholder = require("ui/placeholder");
|
|
|
|
export function creatingView(args: placeholder.CreateViewEventData) {
|
|
var nativeView = new UILabel();
|
|
nativeView.text = "Native";
|
|
args.view = nativeView;
|
|
} |