我试图从Telerik 的 UI 中使用 Angular2 为 Nativescript添加一个侧抽屉。
他们有一个名为的指令showOverNavigation
,它是一个布尔值,当设置为“True”值时应该完成工作,但它目前不适用于我的项目。
我会附上我的app.component.html
代码,所以也许你可以帮助我发现其中的任何错误。
<RadSideDrawer showOverNavigation="{{true}}>"
<StackLayout tkDrawerContent class="sideStackLayout">
<StackLayout class="sideTitleStackLayout">
<Label text="Navigation Menu"></Label>
</StackLayout>
<StackLayout class="sideStackLayout">
<Label text="Primary" class="sideLabel sideLightGrayLabel"></Label>
<Label text="Social" class="sideLabel"></Label>
<Label text="Promotions" class="sideLabel"></Label>
<Label text="Labels" class="sideLabel sideLightGrayLabel"></Label>
<Label text="Important" class="sideLabel"></Label>
<Label text="Starred" class="sideLabel"></Label>
<Label text="Sent Mail" class="sideLabel"></Label>
<Label text="Drafts" class="sideLabel"></Label>
</StackLayout>
</StackLayout>
<StackLayout tkMainContent>
<ActionBar class="actionBar" title="Home">
<image src="~/res/icon.png" (tap)=openDrawer() stretch="none" ios.position="left" ></image>
</ActionBar>
<Label [text]="mainContentText" textWrap="true" class="drawerContentText"></Label>
<Button text="OPEN DRAWER" (tap)=openDrawer()></Button>
</StackLayout>
</RadSideDrawer>
请告诉我我可以就这个问题提供的任何其他信息。提前致谢!=)