Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
[Material] Remove private
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored and PureWeen committed Jan 25, 2019
1 parent a830508 commit a4ae17d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -86,7 +86,7 @@ protected override void OnElementPropertyChanged(object sender, PropertyChangedE
}
}

private void UpdateButtons()
void UpdateButtons()
{
if (Element is Stepper stepper && Control is MaterialStepper control)
{
Expand All @@ -95,7 +95,7 @@ private void UpdateButtons()
}
}

private void OnStep(object sender, EventArgs e)
void OnStep(object sender, EventArgs e)
{
if (Element is Stepper stepper && sender is MButton button)
{
Expand Down Expand Up @@ -142,7 +142,7 @@ public override void LayoutSubviews()
IncrementButton.Frame = new CGRect(btn.Width + DefaultButtonSpacing, 0, btn.Width, btn.Height);
}

private CGSize GetButtonSize()
CGSize GetButtonSize()
{
var dec = DecrementButton.SizeThatFits(CGSize.Empty);
var inc = IncrementButton.SizeThatFits(CGSize.Empty);
Expand Down

0 comments on commit a4ae17d

Please sign in to comment.