在ScrollView
内实现该问题时,我遇到Radsidedrawer
中的问题。
以下代码段是Radsidedrawer主要内容代码
<StackLayout tkMainContent>
<StackLayout [visibility]="isContentVisible ? 'visible' : 'collapsed'">
<ng-content></ng-content>
</StackLayout>
</StackLayout>
MyComponent文件
<ActionBar title="Change Password">
</ActionBar>
<side-drawer>
<GridLayout rows="auto,*" column="auto" class="page">
<StackLayout row="0" column="0" orientation="vertical" class="main-parent">
.....
</StackLayout>
<Image height="10%" id="cpImage" row="1" column="0" class="ads" stretch="aspectFill" (tap)="NavigationToWeb()"></Image>
</GridLayout>
</side-drawer>
样本图像
我提到了红色的空白,它仅在iOS
答案 0 :(得分:0)
在使用ScrollView时,需要禁用iosOverflowSafeArea。
只需更改您的代码即可取消更改。
<GridLayout rows="auto,*" column="auto" class="page" iosOverflowSafeArea="false">