chore: fix animations e2e app layout import (#6415)

This commit is contained in:
Martin Yankov
2018-10-15 17:02:25 +03:00
committed by Svetoslav
parent d24012b851
commit 84017091b0

View File

@ -1,13 +1,13 @@
import { EventData, Page } from "tns-core-modules/ui/page";
import { View } from "tns-core-modules/ui/core/view";
import { Layout } from "tns-core-modules/ui/layouts/layout";
import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout";
import { Image } from "tns-core-modules/ui/image";
let wrapLayout: Layout;
let wrapLayout: WrapLayout;
export function pageLoaded(args: EventData) {
const page = <Page>args.object;
wrapLayout = page.getViewById<Layout>("wrapLayout");
wrapLayout = page.getViewById<WrapLayout>("wrapLayout");
}
export function onAddItem(args: EventData) {