ScrollView IsClippedToBounds="true" not rendering on Android with Forms 3.3, 3.4, 3.5, 3.6, 4.0
#4,455 创建于 2018年11月18日
仓库指标
- 星标
- (5,644 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
My existing project has forms that basically look like this:
<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand">
<StackLayout ...>
<ScrollView ... IsClippedToBounds="true">
<StackLayout ...>
Bunch of controls
</StackLayout>
</ScrollView>
</StackLayout>
<StackLayout Orientation="Vertical" VerticalOptions="EndAndExpand">
Some buttons
</StackLayout>
</StackLLayout>
In Forms 3.2 everything works great but starting with Forms 3.3 the first scroll page renders but subsequent pages do not.
When setting IsClippedToBound off, the pages render but overlay the buttons.
This only applies to Android. My iOS and Windows 10 projects render correctly.
PS. I tried to indent the Xaml but it doesn't work.