Hi!
I have the following code, triying to have different ColumCount based on the device orientation. want to do this because y want two columns on landscape (horizontal) because it’s better for Tablets, but it only shows one column on any orientation.
<Panel>
<ColumnLayout Orientation="Horizontal" ColumnCount="2" />
<ColumnLayout Orientation="Vertical" ColumnCount="1" />
<Each Items="{dataSource.responseData}">
<itemDisplay />
</Each>
</Panel>
Any idea about how can make it work?
Regards
John