chore: add apps for profiling

This commit is contained in:
shirakaba
2022-12-17 16:53:07 +09:00
parent fe60cfac04
commit 2d0c3ff6a9
40 changed files with 822 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Observable, Frame } from '@nativescript/core';
export class MainViewModel extends Observable {
viewDemo(args) {
Frame.topmost().navigate({
moduleName: `plugin-demos/${args.object.text}`,
});
}
}