maui
maui copied to clipboard
[Enhancement] Support Min|Max Height|Width on Grid Column|Row Definition
Summary
Support Minimum and Maximum Width/Height of Grid Column/Row definitions.
Same as WinUI:
API Changes
public class ColumnDefinition
{
...
double MinWidth { get; set; }
double MaxWidth { get; set; }
}
public class RowDefinition
{
...
double MinHeight { get; set; }
double MaxHeight { get; set; }
}
Intended Use Case
Define more responsive & dynamic Grid layout sizes