mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { Observable, Frame, StackLayout } from '@nativescript/core';
|
|
|
|
export class HelloWorldModel extends Observable {
|
|
viewDemo(args) {
|
|
console.log('Navigating to view demo:', args.object.text);
|
|
Frame.topmost().navigate({
|
|
moduleName: `pages/${args.object.text}`,
|
|
});
|
|
}
|
|
}
|