I am developing an app using NativeScript. I want to use RadSideDrawer. Whatever I understood from nativescript.org is that I have to write same code snippet in every component where I want to display drawer. Is this a good practice? Or is there any other way to do so?
Is there any way to create a SideDrawer in one Component and use it in multiple paces(Components) in nativescript?
129 Views Asked by Om Prakash Gupta At
1
1- You can use a component with content projection to show dynamic content. 2- You can use routing with
page-router-outlet
First Solution:
mySideDrawer.component.html
Home.component.ts
full demo: https://play.nativescript.org/?template=play-ng&id=YmqaP3
Second Solution: