ios上未显示Nativescript滚动视图

ios上未显示Nativescript滚动视图,nativescript,nativescript-angular,Nativescript,Nativescript Angular,我在ScrollView中有绝对布局,其中包含寻呼机和寻呼机内的自定义组件。代码在Android上运行,但在iOS上没有显示任何内容。有人有办法吗 <ScrollView> <AbsoluteLayout> <Pager row="1" #pager [selectedIndex]="currentPagerIndex" width="100%"> <ns-dashboard-profile height="100" *pager

我在ScrollView中有绝对布局,其中包含寻呼机和寻呼机内的自定义组件。代码在Android上运行,但在iOS上没有显示任何内容。有人有办法吗

<ScrollView>
<AbsoluteLayout>
    <Pager row="1" #pager [selectedIndex]="currentPagerIndex" width="100%">
        <ns-dashboard-profile height="100" *pagerItem></ns-dashboard-profile>
        <ns-dashboard-home *pagerItem></ns-dashboard-home>
        <ns-dashboard-devices *pagerItem></ns-dashboard-devices>
    </Pager>
    <FlexboxLayout class="navigation-wrapper" top="230">
        <Label text="Profil" (tap)="goToPage('profile')" class="profile-tab"></Label>
        <Label text="Početna" (tap)="goToPage('home')" class="home-tab"></Label>
        <Label text="Moji uređaji" (tap)="goToPage('devices')" class="my-device-tab"></Label>
    </FlexboxLayout>
</AbsoluteLayout>


ScrollView关闭标记未显示在代码段中。

为什么有绝对布局?ScrollView通常用作要滚动的视图的父视图。如果您希望flexbox可以滚动,您应该使用scrollview包装flexbox。我需要flexbox在选项卡上具有固定位置,并且可以与寻呼机一起滚动。我无法重现此问题,您可以共享一个示例吗(您可能无法在操场上使用寻呼机,但您可以将其替换为其他视图,因为它只是为了调试)?