MvvmCross-Tutorials icon indicating copy to clipboard operation
MvvmCross-Tutorials copied to clipboard

AtLeastLeftOf not correctly named

Open softlion opened this issue 11 years ago • 0 comments

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)

softlion avatar May 21 '14 16:05 softlion