MAUI BUG #15076
<Grid RowDefinitions="*,*">
<ScrollView Grid.Row="0" >
<Rectangle HeightRequest="500" BackgroundColor="Blue"/>
</ScrollView>
<ScrollView Grid.Row="1" >
<Rectangle HeightRequest="500" BackgroundColor="Yellow" />
</ScrollView>
</Grid>
- Android: The
Grid
cells are 50/50 and theRectangle
can be scrolled within theScrollView
. (Pixel 5, Emulator) - iOS: [BUG] The
Grid
cells expand to fit theRectangle
, i.e. they are too big. (iPhone SE, simulator) - Windows: [BUG] The
Grid
cells appear to be the correct height but theRectangles
are minimal height.
<Grid RowDefinitions="*,*">
<ScrollView Grid.Row="0" >
<Button Text="A Button in a ScrollView" HeightRequest="500" BackgroundColor="Blue"/>
</ScrollView>
<ScrollView Grid.Row="1" >
<Button Text="A Button in a ScrollView" HeightRequest="500" TextColor="Blue" BackgroundColor="Yellow" />
</ScrollView>
</Grid>
- Android: The Grid cells are 50/50 and the Buttons can be scrolled within the ScrollView.
- Android: [BUG] If this text has InputTransparent=True, it does not show.
- iOS: [BUG] The Grid cells expand to fit the Button, i.e.they are too big. (iPhone SE, simulator)
- Windows: [BUG] The Grid is 50/50, the Button is 500 in height, but the ScrollView is not scrollable.