在 nativescript 应用程序的路由之间禁用 "white fog"
Disable "white fog" between routes on nativescript app
我只为 Android OS 开发应用程序,我在 "white fog" 路线查看之间遇到问题(页面加载时)。我使用 Router 在页面之间进行路由。有人可以帮我解决这个问题吗?这是一个简短的示例视频(如果我点击 "go back" 文本,页面加载时会出现白雾)。
https://slack-files.com/T0L97VCSY-F32FW73H6-6288f56311
路由在@NgModule 中声明并像在 NativeScript 教程中一样定义,如下所示:
export const routes = [
{ path: "", redirectTo: "/login", pathMatch: "full", terminal: true },
{ path: "login", component: LoginComponent },
{ path: "list", component: ListComponent },
];
我在这里找到了这个问题的解决方案:https://github.com/NativeScript/nativescript-angular/issues/468
所以这是实际 tns-core-modules 版本中的错误。我希望在这个模块的下一次更新中能解决这个问题。
我只为 Android OS 开发应用程序,我在 "white fog" 路线查看之间遇到问题(页面加载时)。我使用 Router 在页面之间进行路由。有人可以帮我解决这个问题吗?这是一个简短的示例视频(如果我点击 "go back" 文本,页面加载时会出现白雾)。
https://slack-files.com/T0L97VCSY-F32FW73H6-6288f56311
路由在@NgModule 中声明并像在 NativeScript 教程中一样定义,如下所示:
export const routes = [
{ path: "", redirectTo: "/login", pathMatch: "full", terminal: true },
{ path: "login", component: LoginComponent },
{ path: "list", component: ListComponent },
];
我在这里找到了这个问题的解决方案:https://github.com/NativeScript/nativescript-angular/issues/468
所以这是实际 tns-core-modules 版本中的错误。我希望在这个模块的下一次更新中能解决这个问题。