mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
16 lines
668 B
TypeScript
16 lines
668 B
TypeScript
import { Placeholder as PlaceholderDefinition, CreateViewEventData } from "."
|
|
import { View, EventData } from "../core/view"
|
|
|
|
export class Placeholder extends View implements PlaceholderDefinition {
|
|
public static creatingViewEvent = "creatingView";
|
|
|
|
public createNativeView() {
|
|
const args = <CreateViewEventData>{ eventName: Placeholder.creatingViewEvent, object: this, view: undefined, context: this._context };
|
|
this.notify(args);
|
|
return args.view;
|
|
}
|
|
}
|
|
export interface Placeholder {
|
|
on(eventNames: string, callback: (args: EventData) => void);
|
|
on(event: "creatingView", callback: (args: CreateViewEventData) => void);
|
|
} |