Layout\FlexLayout.cs (27)
76 get => (FlexDirection)GetValue(DirectionProperty);
83 get => (FlexJustify)GetValue(JustifyContentProperty);
90 get => (FlexAlignContent)GetValue(AlignContentProperty);
97 get => (FlexAlignItems)GetValue(AlignItemsProperty);
104 get => (FlexPosition)GetValue(PositionProperty);
111 get => (FlexWrap)GetValue(WrapProperty);
117 => (int)bindable.GetValue(OrderProperty);
125 => (float)bindable.GetValue(GrowProperty);
133 => (float)bindable.GetValue(ShrinkProperty);
141 => (FlexAlignSelf)bindable.GetValue(AlignSelfProperty);
149 => (FlexBasis)bindable.GetValue(BasisProperty);
160 => (Flex.Item)bindable.GetValue(FlexItemProperty);
272 BindableObject bo => (int)bo.GetValue(OrderProperty),
294 BindableObject bo => (float)bo.GetValue(GrowProperty),
316 BindableObject bo => (float)bo.GetValue(ShrinkProperty),
338 BindableObject bo => (FlexAlignSelf)bo.GetValue(AlignSelfProperty),
360 BindableObject bo => (FlexBasis)bo.GetValue(BasisProperty),
382 BindableObject bo => (Flex.Item)bo.GetValue(FlexItemProperty),
404 BindableObject bo => (Thickness)bo.GetValue(MarginProperty),
413 BindableObject bo => (double)bo.GetValue(WidthRequestProperty),
422 BindableObject bo => (double)bo.GetValue(HeightRequestProperty),
431 BindableObject bo => (bool)bo.GetValue(IsVisibleProperty),
623 item.AlignContent = (Flex.AlignContent)(FlexAlignContent)GetValue(AlignContentProperty);
624 item.AlignItems = (Flex.AlignItems)(FlexAlignItems)GetValue(AlignItemsProperty);
625 item.Direction = (Flex.Direction)(FlexDirection)GetValue(DirectionProperty);
626 item.JustifyContent = (Flex.Justify)(FlexJustify)GetValue(JustifyContentProperty);
627 item.Wrap = (Flex.Wrap)(FlexWrap)GetValue(WrapProperty);