public static TView Basis <TView>(this TView view, FlexBasis value) where TView : View
 {
     FlexLayout.SetBasis(view, value);
     return(view);
 }
 public static TBindable SetBasis <TBindable>(this TBindable bindable, FlexBasis value) where TBindable : BindableObject
 => bindable.Set(FlexLayout.BasisProperty, value);
 public static TView Basis <TView>(this TView view, FlexBasis value) where TView : View
 {
     VerifyExperimental();
     FlexLayout.SetBasis(view, value);
     return(view);
 }
Example #4
0
 public static TControl Basis <TControl>(this TControl control, FlexBasis value)
     where TControl : IReflectedPrimitive <Xamarin.Forms.View>
 {
     control.Attributes.SetAttribute(FlexBasisAttribute, value);
     return(control);
 }