We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d24012b commit 8401709Copy full SHA for 8401709
1 file changed
e2e/animation/app/slide-in-effect/page.ts
@@ -1,13 +1,13 @@
1
import { EventData, Page } from "tns-core-modules/ui/page";
2
import { View } from "tns-core-modules/ui/core/view";
3
-import { Layout } from "tns-core-modules/ui/layouts/layout";
+import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout";
4
import { Image } from "tns-core-modules/ui/image";
5
6
-let wrapLayout: Layout;
+let wrapLayout: WrapLayout;
7
8
export function pageLoaded(args: EventData) {
9
const page = <Page>args.object;
10
- wrapLayout = page.getViewById<Layout>("wrapLayout");
+ wrapLayout = page.getViewById<WrapLayout>("wrapLayout");
11
}
12
13
export function onAddItem(args: EventData) {
0 commit comments