4 writes to Grow
Microsoft.Maui.Controls (4)
Layout\FlexLayout.cs (2)
174
GetFlexItem(bindable).
Grow
= (float)newValue;
439
item.
Grow
= GetGrow(view);
LegacyLayouts\FlexLayout.cs (2)
162
GetFlexItem(bindable).
Grow
= (float)newValue;
327
item.
Grow
= (float)view.GetValue(GrowProperty);
5 references to Grow
Microsoft.Maui (5)
Layouts\Flex.cs (5)
557
if (child.
Grow
< 0
561
layout.flex_grows += child.
Grow
;
574
if (child_size > 0 && child.
Grow
> 0)
785
if (child.
Grow
!= 0)
788
flex_size = (layout.flex_dim / layout.flex_grows) * child.
Grow
;