fiux stepper in tip calc

This commit is contained in:
2025-06-10 11:09:09 +02:00
parent 11fc606270
commit 949bb7277d
2 changed files with 28 additions and 13 deletions

View File

@@ -115,7 +115,8 @@ class _MihNumericStepperState extends State<MihNumericStepper> {
),
Visibility(
visible: _currentValue < (widget.minValue ?? 0) ||
_currentValue > widget.maxValue!,
(widget.maxValue != null &&
_currentValue > widget.maxValue!),
child: const SizedBox(
height: 21,
),
@@ -197,7 +198,8 @@ class _MihNumericStepperState extends State<MihNumericStepper> {
),
Visibility(
visible: _currentValue < (widget.minValue ?? 0) ||
_currentValue > widget.maxValue!,
(widget.maxValue != null &&
_currentValue > widget.maxValue!),
child: const SizedBox(
height: 21,
),