本文整理匯總了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();
}
}
示例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);
};
示例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);
};