20 references to Justify
Microsoft.Maui (16)
Layouts\Flex.cs (10)
288 public Justify JustifyContent { get; set; } = Justify.Start; 649 static void layout_align(Justify align, float flex_dim, int children_count, ref float pos_p, ref float spacing_p) 658 case Justify.Start: 660 case Justify.End: 663 case Justify.Center: 666 case Justify.SpaceBetween: 670 case Justify.SpaceAround: 677 case Justify.SpaceEvenly: 685 throw new ArgumentException($"{nameof(Justify)} option not handled", nameof(align));
Layouts\FlexEnums.cs (6)
9 Start = Flex.Justify.Start, 10 Center = Flex.Justify.Center, 11 End = Flex.Justify.End, 12 SpaceBetween = Flex.Justify.SpaceBetween, 13 SpaceAround = Flex.Justify.SpaceAround, 14 SpaceEvenly = Flex.Justify.SpaceEvenly,
Microsoft.Maui.Controls (4)
Layout\FlexLayout.cs (2)
216 flexLayout._root.JustifyContent = (Flex.Justify)(FlexJustify)newValue; 626 item.JustifyContent = (Flex.Justify)(FlexJustify)GetValue(JustifyContentProperty);
LegacyLayouts\FlexLayout.cs (2)
204 flexLayout._root.JustifyContent = (Flex.Justify)(FlexJustify)newValue; 276 item.JustifyContent = (Flex.Justify)(FlexJustify)GetValue(JustifyContentProperty);