mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Update styles -> `app.css`. Update structure -> `home/home-page.xml`. Add Grid + Wrap examples.
7 lines
258 B
TypeScript
7 lines
258 B
TypeScript
import { Page } from "tns-core-modules/ui/page";
|
|
import { ListViewViewModel } from "~/listview/fragments/listview-fragment-view-model";
|
|
|
|
export function onLoaded(args) {
|
|
const page = <Page>args.object;
|
|
page.bindingContext = new ListViewViewModel();
|
|
} |