Hi, I think it's quite common to use Scroller with GridLayout. I have a list of images, how I can let them take as much space as they can and also maintain their aspect ration.
I write the repeater is like this:
GridLayout Orientation="Vertical" AllowWrap="true" Rows="2"
And the repeat item has a scale layout:
ScaleLayout AllowScaleUp="true" AllowScaleDown="true" MaintainAspectRatio="true"
This turned out only one column is shown.
If I add the reference size, it will showup, but it will not take the whole space when screen resolution changes.