當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript frame.stack函數代碼示例

本文整理匯總了TypeScript中tns-core-modules/ui/frame.stack函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript stack函數的具體用法?TypeScript stack怎麽用?TypeScript stack使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了stack函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: onNavigatedTo

export function onNavigatedTo(args: NavigatedData) {
    TKUnit.assertEqual(stack().length, 2, "Host and tab modal frame should be instantiated at this point!");
    // shownModally raised after page.NavigatedTo on iOS so we close modal there
    if (isAndroid) {
        (args.object as View).closeModal();
    }
}
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:7,代碼來源:modal-tab-page.ts

示例2: test_reset_tab_to_frame

export function test_reset_tab_to_frame() {
    const testTabRoot = createTestTabRootEntry();

    helper.waitUntilNavigatedTo(testTabRoot.page, () => _resetRootView(testTabRoot.entry));

    const rootView2 = getRootView();
    const frameStack2 = stack();
    TKUnit.assertEqual(rootView2, testTabRoot.root);
    TKUnit.assertEqual(frameStack2.length, 2);

    const testFrameRoot = createTestFrameRootEntry();

    helper.waitUntilNavigatedTo(testFrameRoot.page, () => _resetRootView(testFrameRoot.entry));

    const rootView1 = getRootView();
    const frameStack1 = stack();
    TKUnit.assertEqual(rootView1, testFrameRoot.root);
    TKUnit.assertEqual(frameStack1.length, 1);
};
開發者ID:NathanaelA,項目名稱:NativeScript,代碼行數:19,代碼來源:reset-root-view-tests.ts

示例3: test_reset_tab_to_tab

export function test_reset_tab_to_tab() {
    const testTabRoot1 = createTestTabRootEntry();

    waitUntilTabViewReady(testTabRoot1.page, () => _resetRootView(testTabRoot1.entry));

    const rootView1 = getRootView();
    const frameStack1 = stack();
    TKUnit.assertEqual(rootView1, testTabRoot1.root);
    TKUnit.assertEqual(frameStack1.length, 2);

    const testTabRoot2 = createTestTabRootEntry();

    waitUntilTabViewReady(testTabRoot2.page, () => _resetRootView(testTabRoot2.entry));

    const rootView2 = getRootView();
    const frameStack2 = stack();
    TKUnit.assertEqual(rootView2, testTabRoot2.root);
    TKUnit.assertEqual(frameStack2.length, 2);
};
開發者ID:NathanWalker,項目名稱:NativeScript,代碼行數:19,代碼來源:reset-root-view-tests.ts


注:本文中的tns-core-modules/ui/frame.stack函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。