test(safe-area): update application

Update styles -> `app.css`.
Update structure -> `home/home-page.xml`.
Add Grid + Wrap examples.
This commit is contained in:
Vasil Chimev
2018-08-10 15:40:29 +03:00
committed by Martin Yankov
parent 8f8001eac8
commit f7dfcb086c
100 changed files with 589 additions and 452 deletions

View File

@@ -0,0 +1,8 @@
import { View, EventData } from "tns-core-modules/ui/core/view";
export function onNavigate(args: EventData) {
const view = args.object as View;
const route = view["route"];
view.page.frame.navigate(route);
}