I am trying to design an interface where there is a pane on the left and a another pane that expands to fit the remaining space. I attempted to do this with a HorizontalStackLayout, but no matter what I do, I can't get the second pane to appear without setting a specific WidthRequest. This is a demonstration of how I want it to look:
This is what I am trying, but no combination of options seems to work:
<HorizontalStackLayout HorizontalOptions="FillAndExpand">
<BoxView BackgroundColor="Green" HorizontalOptions="Start" WidthRequest="200"></BoxView>
<BoxView BackgroundColor="Blue" HorizontalOptions="FillAndExpand"></BoxView>
</HorizontalStackLayout>
This is all I ever get in Maui without setting an explicit width:
I have tried Start, StartAndExpand, FillAndExpand, nothing works. What am I doing wrong?

