NativeScript Side Drawer 脱钩页面
NativeScript Side Drawer unhooked page
我是 NativeScript 的新手,我一直在按照说明 here 创建我的应用程序。
但是我发现所有的页面都挂在了抽屉上,如何解开一些页面,比如登录,创建...?
您可以获得对侧边栏的引用并禁用交互。
import { getRootView } from "tns-core-modules/application";
this.drawer = <RadSideDrawer>getRootView();
this.drawer.gesturesEnabled = false;
以上是在this POC application的登录页面实现的。
我是 NativeScript 的新手,我一直在按照说明 here 创建我的应用程序。 但是我发现所有的页面都挂在了抽屉上,如何解开一些页面,比如登录,创建...?
您可以获得对侧边栏的引用并禁用交互。
import { getRootView } from "tns-core-modules/application";
this.drawer = <RadSideDrawer>getRootView();
this.drawer.gesturesEnabled = false;
以上是在this POC application的登录页面实现的。