I'm currently working on developing a native application with Angular in NativeScript. My goal is to implement the side drawer from Telerik-UI as a filtering panel for the data I plan to present in the main text content area. The issue I'm facing is that although my code runs without any errors, the sideDrawer itself is not visible at all. I'm struggling to debug this problem.
I'm adapting an example for my application, and you can find it here (only the file names are mentioned):
http://docs.telerik.com/devtools/nativescript-ui/Controls/Angular/SideDrawer/getting-started
Here's the content of filter.component.html:
<RadSideDrawer showOverNavigation="true" tkExampleTitle tkToggleNavButton class="page">
<StackLayout tkDrawerContent class="sideStackLayout">
<StackLayout class="sideTitleStackLayout">
<Label text="Navigation Menu"></Label>
</StackLayout>
<!-- More code continues... -->
enterprises to earn points.
In case you need more information about how everything fits together, my project structure closely resembles this sample:
If there's anyone who could provide some guidance or assistance on this matter, I would greatly appreciate it.