Description
Hello, when i put border inside a Frame -> Grid -> Border the content is empty dont render
With border

Without border

XML Code
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<Frame>
<Grid RowDefinitions="auto, auto, auto, auto">
<Border Stroke="#C49B33"
StrokeThickness="4"
StrokeShape="RoundRectangle 40,0,0,40"
Background="#2B0B98"
Padding="16,8"
HorizontalOptions="Center" Grid.Row="0">
<Label Text=".NET MAUI"
TextColor="White"
FontSize="18"
FontAttributes="Bold" />
</Border>
<Label Grid.Row="1"
Text="Login"
FontSize="18"
HorizontalOptions="Center" />
<Button Grid.Row="2"
Text="Login"
Clicked="OnLogin"
HorizontalOptions="Center" />
<Button Grid.Row="3"
Text="Settings"
Clicked="OnSettings"
HorizontalOptions="Center" />
</Grid>
</Frame>
</VerticalStackLayout>
Steps to Reproduce
- Create MAUI .NET 8 Project
- On page Add VerticalStackLayout, Frame, Grid, Border
- The content is not displayed
Link to public reproduction project repository
https://github.com/LaBoss/MAUITestes.git
Version with bug
8.0.0-rc.2.9511
Is this a regression from previous behavior?
Yes, this used to work in .NET MAUI
Last version that worked well
7.0.96
Affected platforms
Android, I was not able test on other platforms
Affected platform versions
Android 11
Did you find any workaround?
Dont use border
Relevant log output
No response
Description
Hello, when i put border inside a Frame -> Grid -> Border the content is empty dont render
With border

Without border

XML Code
Steps to Reproduce
Link to public reproduction project repository
https://github.com/LaBoss/MAUITestes.git
Version with bug
8.0.0-rc.2.9511
Is this a regression from previous behavior?
Yes, this used to work in .NET MAUI
Last version that worked well
7.0.96
Affected platforms
Android, I was not able test on other platforms
Affected platform versions
Android 11
Did you find any workaround?
Dont use border
Relevant log output
No response