i am using nativescript on stackblitz.
i want to use a tabview acording to this doc, i just add a tab on html. but i am not sure because normaly on stackblitz i have to add dependency when i add a new component.
<TabView id="tabViewContainer">
<TabViewItem title="First Tab">
<StackLayout>
<Label text="First Tab" textWrap="true" color="white"> </Label>
</StackLayout>
</TabViewItem>
<TabViewItem title="Second Tab">
<StackLayout>
<Label text="Second Tab" textWrap="true" color="white"> </Label>
</StackLayout>
</TabViewItem>
</TabView>
why my tab view not working ? how can i add a dependency on stackblitz with nativescript ?
when i try to imported on my ts file:
import { TabView, TabViewItem, SelectedIndexChangedEventData } from "tns-core-modules/ui/tab-view";
it not found, because it is not in my package/json