public static void UpdateBackground(this MauiStepper nativeStepper, IStepper stepper) { var background = stepper?.Background; if (background == null) { return; } nativeStepper.ButtonBackground = background.ToNative(); }
public static void UpdateMinimum(this MauiStepper nativeStepper, IStepper stepper) { nativeStepper.Minimum = stepper.Minimum; }
public static void UpdateValue(this MauiStepper nativeStepper, IStepper stepper) { nativeStepper.Value = stepper.Value; }
public static void UpdateInterval(this MauiStepper nativeStepper, IStepper stepper) { nativeStepper.Increment = stepper.Interval; }