MvvmCross-Tutorials
MvvmCross-Tutorials copied to clipboard
AtLeastLeftOf not correctly named
Definition:
public static FluentLayout AtLeastLeftOf(this UIView view, UIView previous, float margin = 0f)
{
return view.Left().GreaterThanOrEqualTo().LeftOf(previous).Plus(margin);
}
It should be called AtLeftMostOf instead. (AtMostLeftOf is already used)