Responsive Column
Inherits from Xamarin.Forms.StackLayout
Let's just get the obvious out of the way - you are probably reading the wrong page. We imagine you meant to be reading the ResponsiveLayout page instead. Unless you are just looking for the API reference all the juicy details are over there.
Properties
Property | Type | Description |
ExtraSmall | int? | The number of column segments that this column occupies on extra small devices. Defaults to null. |
Small | int? | The number of column segments that this column occupies on small devices. Defaults to null. |
Medium | int? | The number of column segments that this column occupies on medium devices. Defaults to null. |
Large | int? | The number of column segments that this column occupies on large devices. Defaults to null. |
ExtraLarge | int? | The number of column segments that this column occupies on extra large devices. Defaults to null. |
ExtraSmallOrder | int? | Overrides the default ordering of columns on extra small devices. Defaults to null. |
SmallOrder | int? | Overrides the default ordering of columns on small devices. Defaults to null. |
MediumOrder | int? | Overrides the default ordering of columns on medium devices. Defaults to null. |
LargeOrder | int? | Overrides the default ordering of columns on large devices. Defaults to null. |
ExtraLargeOrder | int? | Overrides the default ordering of columns on extra large devices. Defaults to null. |
Spacing | double | Specifies the amount of spacing between child views (inherited from StackLayout). Defaults to 10. |
Last updated