我想创建一个多步模态对话框 - 就像向导一样。一系列相互关联的屏幕。
我正在使用NativeScript网站上的代码来显示模态(https://docs.nativescript.org/core-concepts/navigation#modal-pages)
var modalPageModule = "./modal-views-demo/login-page";
var context = "some custom context";
var fullscreen = true;
mainPage.showModal(modalPageModule, context, function closeCallback(username, password) {
// Log the user in...
}, fullscreen);
代码有效,但我不确定在显示模式后如何更改modalPageModule
。
可能重复
Nativescript: How to use navigation in modals https://github.com/NativeScript/NativeScript/issues/3753