Unverified Commit b0aa5025 authored by Pierre-Louis's avatar Pierre-Louis Committed by GitHub

Use `curly_braces_in_flow_control_structures` for `animations`, `cupertino` (#104612)

* Use `curly_braces_in_flow_control_structures` for `animation`

* Use `curly_braces_in_flow_control_structures` for `cupertino`

* fix comments
parent 9cc72df7
...@@ -389,8 +389,9 @@ class AnimationController extends Animation<double> ...@@ -389,8 +389,9 @@ class AnimationController extends Animation<double>
/// If [isAnimating] is false, then [value] is not changing and the rate of /// If [isAnimating] is false, then [value] is not changing and the rate of
/// change is zero. /// change is zero.
double get velocity { double get velocity {
if (!isAnimating) if (!isAnimating) {
return 0.0; return 0.0;
}
return _simulation!.dx(lastElapsedDuration!.inMicroseconds.toDouble() / Duration.microsecondsPerSecond); return _simulation!.dx(lastElapsedDuration!.inMicroseconds.toDouble() / Duration.microsecondsPerSecond);
} }
...@@ -456,8 +457,9 @@ class AnimationController extends Animation<double> ...@@ -456,8 +457,9 @@ class AnimationController extends Animation<double>
'AnimationController methods should not be used after calling dispose.', 'AnimationController methods should not be used after calling dispose.',
); );
_direction = _AnimationDirection.forward; _direction = _AnimationDirection.forward;
if (from != null) if (from != null) {
value = from; value = from;
}
return _animateToInternal(upperBound); return _animateToInternal(upperBound);
} }
...@@ -489,8 +491,9 @@ class AnimationController extends Animation<double> ...@@ -489,8 +491,9 @@ class AnimationController extends Animation<double>
'AnimationController methods should not be used after calling dispose.', 'AnimationController methods should not be used after calling dispose.',
); );
_direction = _AnimationDirection.reverse; _direction = _AnimationDirection.reverse;
if (from != null) if (from != null) {
value = from; value = from;
}
return _animateToInternal(lowerBound); return _animateToInternal(lowerBound);
} }
...@@ -856,12 +859,13 @@ class _InterpolationSimulation extends Simulation { ...@@ -856,12 +859,13 @@ class _InterpolationSimulation extends Simulation {
@override @override
double x(double timeInSeconds) { double x(double timeInSeconds) {
final double t = clampDouble(timeInSeconds / _durationInSeconds, 0.0, 1.0); final double t = clampDouble(timeInSeconds / _durationInSeconds, 0.0, 1.0);
if (t == 0.0) if (t == 0.0) {
return _begin; return _begin;
else if (t == 1.0) } else if (t == 1.0) {
return _end; return _end;
else } else {
return _begin + (_end - _begin) * _curve.transform(t); return _begin + (_end - _begin) * _curve.transform(t);
}
} }
@override @override
......
...@@ -188,22 +188,27 @@ class ProxyAnimation extends Animation<double> ...@@ -188,22 +188,27 @@ class ProxyAnimation extends Animation<double>
Animation<double>? get parent => _parent; Animation<double>? get parent => _parent;
Animation<double>? _parent; Animation<double>? _parent;
set parent(Animation<double>? value) { set parent(Animation<double>? value) {
if (value == _parent) if (value == _parent) {
return; return;
}
if (_parent != null) { if (_parent != null) {
_status = _parent!.status; _status = _parent!.status;
_value = _parent!.value; _value = _parent!.value;
if (isListening) if (isListening) {
didStopListening(); didStopListening();
}
} }
_parent = value; _parent = value;
if (_parent != null) { if (_parent != null) {
if (isListening) if (isListening) {
didStartListening(); didStartListening();
if (_value != _parent!.value) }
if (_value != _parent!.value) {
notifyListeners(); notifyListeners();
if (_status != _parent!.status) }
if (_status != _parent!.status) {
notifyStatusListeners(_parent!.status); notifyStatusListeners(_parent!.status);
}
_status = null; _status = null;
_value = null; _value = null;
} }
...@@ -233,8 +238,9 @@ class ProxyAnimation extends Animation<double> ...@@ -233,8 +238,9 @@ class ProxyAnimation extends Animation<double>
@override @override
String toString() { String toString() {
if (parent == null) if (parent == null) {
return '${objectRuntimeType(this, 'ProxyAnimation')}(null; ${super.toStringDetails()} ${value.toStringAsFixed(3)})'; return '${objectRuntimeType(this, 'ProxyAnimation')}(null; ${super.toStringDetails()} ${value.toStringAsFixed(3)})';
}
return '$parent\u27A9${objectRuntimeType(this, 'ProxyAnimation')}'; return '$parent\u27A9${objectRuntimeType(this, 'ProxyAnimation')}';
} }
} }
...@@ -441,8 +447,9 @@ class CurvedAnimation extends Animation<double> with AnimationWithParentMixin<do ...@@ -441,8 +447,9 @@ class CurvedAnimation extends Animation<double> with AnimationWithParentMixin<do
final Curve? activeCurve = _useForwardCurve ? curve : reverseCurve; final Curve? activeCurve = _useForwardCurve ? curve : reverseCurve;
final double t = parent.value; final double t = parent.value;
if (activeCurve == null) if (activeCurve == null) {
return t; return t;
}
if (t == 0.0 || t == 1.0) { if (t == 0.0 || t == 1.0) {
assert(() { assert(() {
final double transformedValue = activeCurve.transform(t); final double transformedValue = activeCurve.transform(t);
...@@ -464,10 +471,12 @@ class CurvedAnimation extends Animation<double> with AnimationWithParentMixin<do ...@@ -464,10 +471,12 @@ class CurvedAnimation extends Animation<double> with AnimationWithParentMixin<do
@override @override
String toString() { String toString() {
if (reverseCurve == null) if (reverseCurve == null) {
return '$parent\u27A9$curve'; return '$parent\u27A9$curve';
if (_useForwardCurve) }
if (_useForwardCurve) {
return '$parent\u27A9$curve\u2092\u2099/$reverseCurve'; return '$parent\u27A9$curve\u2092\u2099/$reverseCurve';
}
return '$parent\u27A9$curve/$reverseCurve\u2092\u2099'; return '$parent\u27A9$curve/$reverseCurve\u2092\u2099';
} }
} }
...@@ -581,8 +590,9 @@ class TrainHoppingAnimation extends Animation<double> ...@@ -581,8 +590,9 @@ class TrainHoppingAnimation extends Animation<double>
_lastValue = newValue; _lastValue = newValue;
} }
assert(_lastValue != null); assert(_lastValue != null);
if (hop && onSwitchedTrain != null) if (hop && onSwitchedTrain != null) {
onSwitchedTrain!(); onSwitchedTrain!();
}
} }
@override @override
...@@ -605,8 +615,9 @@ class TrainHoppingAnimation extends Animation<double> ...@@ -605,8 +615,9 @@ class TrainHoppingAnimation extends Animation<double>
@override @override
String toString() { String toString() {
if (_nextTrain != null) if (_nextTrain != null) {
return '$currentTrain\u27A9${objectRuntimeType(this, 'TrainHoppingAnimation')}(next: $_nextTrain)'; return '$currentTrain\u27A9${objectRuntimeType(this, 'TrainHoppingAnimation')}(next: $_nextTrain)';
}
return '$currentTrain\u27A9${objectRuntimeType(this, 'TrainHoppingAnimation')}(no next)'; return '$currentTrain\u27A9${objectRuntimeType(this, 'TrainHoppingAnimation')}(no next)';
} }
} }
...@@ -660,8 +671,9 @@ abstract class CompoundAnimation<T> extends Animation<T> ...@@ -660,8 +671,9 @@ abstract class CompoundAnimation<T> extends Animation<T>
/// Otherwise, default to [first]. /// Otherwise, default to [first].
@override @override
AnimationStatus get status { AnimationStatus get status {
if (next.status == AnimationStatus.forward || next.status == AnimationStatus.reverse) if (next.status == AnimationStatus.forward || next.status == AnimationStatus.reverse) {
return next.status; return next.status;
}
return first.status; return first.status;
} }
......
...@@ -183,15 +183,17 @@ class Interval extends Curve { ...@@ -183,15 +183,17 @@ class Interval extends Curve {
assert(end <= 1.0); assert(end <= 1.0);
assert(end >= begin); assert(end >= begin);
t = clampDouble((t - begin) / (end - begin), 0.0, 1.0); t = clampDouble((t - begin) / (end - begin), 0.0, 1.0);
if (t == 0.0 || t == 1.0) if (t == 0.0 || t == 1.0) {
return t; return t;
}
return curve.transform(t); return curve.transform(t);
} }
@override @override
String toString() { String toString() {
if (curve is! _Linear) if (curve is! _Linear) {
return '${objectRuntimeType(this, 'Interval')}($begin\u22EF$end)\u27A9$curve'; return '${objectRuntimeType(this, 'Interval')}($begin\u22EF$end)\u27A9$curve';
}
return '${objectRuntimeType(this, 'Interval')}($begin\u22EF$end)'; return '${objectRuntimeType(this, 'Interval')}($begin\u22EF$end)';
} }
} }
...@@ -348,12 +350,14 @@ class Cubic extends Curve { ...@@ -348,12 +350,14 @@ class Cubic extends Curve {
while (true) { while (true) {
final double midpoint = (start + end) / 2; final double midpoint = (start + end) / 2;
final double estimate = _evaluateCubic(a, c, midpoint); final double estimate = _evaluateCubic(a, c, midpoint);
if ((t - estimate).abs() < _cubicErrorBound) if ((t - estimate).abs() < _cubicErrorBound) {
return _evaluateCubic(b, d, midpoint); return _evaluateCubic(b, d, midpoint);
if (estimate < t) }
if (estimate < t) {
start = midpoint; start = midpoint;
else } else {
end = midpoint; end = midpoint;
}
} }
} }
...@@ -1219,10 +1223,11 @@ class _BounceInOutCurve extends Curve { ...@@ -1219,10 +1223,11 @@ class _BounceInOutCurve extends Curve {
@override @override
double transformInternal(double t) { double transformInternal(double t) {
if (t < 0.5) if (t < 0.5) {
return (1.0 - _bounce(1.0 - t * 2.0)) * 0.5; return (1.0 - _bounce(1.0 - t * 2.0)) * 0.5;
else } else {
return _bounce(t * 2.0 - 1.0) * 0.5 + 0.5; return _bounce(t * 2.0 - 1.0) * 0.5 + 0.5;
}
} }
} }
...@@ -1304,10 +1309,11 @@ class ElasticInOutCurve extends Curve { ...@@ -1304,10 +1309,11 @@ class ElasticInOutCurve extends Curve {
double transformInternal(double t) { double transformInternal(double t) {
final double s = period / 4.0; final double s = period / 4.0;
t = 2.0 * t - 1.0; t = 2.0 * t - 1.0;
if (t < 0.0) if (t < 0.0) {
return -0.5 * math.pow(2.0, 10.0 * t) * math.sin((t - s) * (math.pi * 2.0) / period); return -0.5 * math.pow(2.0, 10.0 * t) * math.sin((t - s) * (math.pi * 2.0) / period);
else } else {
return math.pow(2.0, -10.0 * t) * math.sin((t - s) * (math.pi * 2.0) / period) * 0.5 + 1.0; return math.pow(2.0, -10.0 * t) * math.sin((t - s) * (math.pi * 2.0) / period) * 0.5 + 1.0;
}
} }
@override @override
......
...@@ -26,8 +26,9 @@ mixin AnimationLazyListenerMixin { ...@@ -26,8 +26,9 @@ mixin AnimationLazyListenerMixin {
@protected @protected
void didRegisterListener() { void didRegisterListener() {
assert(_listenerCounter >= 0); assert(_listenerCounter >= 0);
if (_listenerCounter == 0) if (_listenerCounter == 0) {
didStartListening(); didStartListening();
}
_listenerCounter += 1; _listenerCounter += 1;
} }
...@@ -41,8 +42,9 @@ mixin AnimationLazyListenerMixin { ...@@ -41,8 +42,9 @@ mixin AnimationLazyListenerMixin {
void didUnregisterListener() { void didUnregisterListener() {
assert(_listenerCounter >= 1); assert(_listenerCounter >= 1);
_listenerCounter -= 1; _listenerCounter -= 1;
if (_listenerCounter == 0) if (_listenerCounter == 0) {
didStopListening(); didStopListening();
}
} }
/// Called when the number of listeners changes from zero to one. /// Called when the number of listeners changes from zero to one.
...@@ -151,8 +153,9 @@ mixin AnimationLocalListenersMixin { ...@@ -151,8 +153,9 @@ mixin AnimationLocalListenersMixin {
return true; return true;
}()); }());
try { try {
if (_listeners.contains(listener)) if (_listeners.contains(listener)) {
listener(); listener();
}
} catch (exception, stack) { } catch (exception, stack) {
FlutterError.reportError(FlutterErrorDetails( FlutterError.reportError(FlutterErrorDetails(
exception: exception, exception: exception,
...@@ -229,8 +232,9 @@ mixin AnimationLocalStatusListenersMixin { ...@@ -229,8 +232,9 @@ mixin AnimationLocalStatusListenersMixin {
final List<AnimationStatusListener> localListeners = _statusListeners.toList(growable: false); final List<AnimationStatusListener> localListeners = _statusListeners.toList(growable: false);
for (final AnimationStatusListener listener in localListeners) { for (final AnimationStatusListener listener in localListeners) {
try { try {
if (_statusListeners.contains(listener)) if (_statusListeners.contains(listener)) {
listener(status); listener(status);
}
} catch (exception, stack) { } catch (exception, stack) {
InformationCollector? collector; InformationCollector? collector;
assert(() { assert(() {
......
...@@ -320,10 +320,12 @@ class Tween<T extends Object?> extends Animatable<T> { ...@@ -320,10 +320,12 @@ class Tween<T extends Object?> extends Animatable<T> {
/// subclass. /// subclass.
@override @override
T transform(double t) { T transform(double t) {
if (t == 0.0) if (t == 0.0) {
return begin as T; return begin as T;
if (t == 1.0) }
if (t == 1.0) {
return end as T; return end as T;
}
return lerp(t); return lerp(t);
} }
......
...@@ -56,8 +56,9 @@ class TweenSequence<T> extends Animatable<T> { ...@@ -56,8 +56,9 @@ class TweenSequence<T> extends Animatable<T> {
_items.addAll(items); _items.addAll(items);
double totalWeight = 0.0; double totalWeight = 0.0;
for (final TweenSequenceItem<T> item in _items) for (final TweenSequenceItem<T> item in _items) {
totalWeight += item.weight; totalWeight += item.weight;
}
assert(totalWeight > 0.0); assert(totalWeight > 0.0);
double start = 0.0; double start = 0.0;
...@@ -80,11 +81,13 @@ class TweenSequence<T> extends Animatable<T> { ...@@ -80,11 +81,13 @@ class TweenSequence<T> extends Animatable<T> {
@override @override
T transform(double t) { T transform(double t) {
assert(t >= 0.0 && t <= 1.0); assert(t >= 0.0 && t <= 1.0);
if (t == 1.0) if (t == 1.0) {
return _evaluateAt(t, _items.length - 1); return _evaluateAt(t, _items.length - 1);
}
for (int index = 0; index < _items.length; index++) { for (int index = 0; index < _items.length; index++) {
if (_intervals[index].contains(t)) if (_intervals[index].contains(t)) {
return _evaluateAt(t, index); return _evaluateAt(t, index);
}
} }
// Should be unreachable. // Should be unreachable.
throw StateError('TweenSequence.evaluate() could not find an interval for $t'); throw StateError('TweenSequence.evaluate() could not find an interval for $t');
......
...@@ -107,10 +107,11 @@ class _CupertinoActivityIndicatorState extends State<CupertinoActivityIndicator> ...@@ -107,10 +107,11 @@ class _CupertinoActivityIndicatorState extends State<CupertinoActivityIndicator>
void didUpdateWidget(CupertinoActivityIndicator oldWidget) { void didUpdateWidget(CupertinoActivityIndicator oldWidget) {
super.didUpdateWidget(oldWidget); super.didUpdateWidget(oldWidget);
if (widget.animating != oldWidget.animating) { if (widget.animating != oldWidget.animating) {
if (widget.animating) if (widget.animating) {
_controller.repeat(); _controller.repeat();
else } else {
_controller.stop(); _controller.stop();
}
} }
} }
......
...@@ -271,8 +271,9 @@ class CupertinoTabBar extends StatelessWidget implements PreferredSizeWidget { ...@@ -271,8 +271,9 @@ class CupertinoTabBar extends StatelessWidget implements PreferredSizeWidget {
/// Change the active tab item's icon and title colors to active. /// Change the active tab item's icon and title colors to active.
Widget _wrapActiveItem(BuildContext context, Widget item, { required bool active }) { Widget _wrapActiveItem(BuildContext context, Widget item, { required bool active }) {
if (!active) if (!active) {
return item; return item;
}
final Color activeColor = CupertinoDynamicColor.resolve( final Color activeColor = CupertinoDynamicColor.resolve(
this.activeColor ?? CupertinoTheme.of(context).primaryColor, this.activeColor ?? CupertinoTheme.of(context).primaryColor,
......
...@@ -214,15 +214,17 @@ class _CupertinoButtonState extends State<CupertinoButton> with SingleTickerProv ...@@ -214,15 +214,17 @@ class _CupertinoButtonState extends State<CupertinoButton> with SingleTickerProv
} }
void _animate() { void _animate() {
if (_animationController.isAnimating) if (_animationController.isAnimating) {
return; return;
}
final bool wasHeldDown = _buttonHeldDown; final bool wasHeldDown = _buttonHeldDown;
final TickerFuture ticker = _buttonHeldDown final TickerFuture ticker = _buttonHeldDown
? _animationController.animateTo(1.0, duration: kFadeOutDuration, curve: Curves.easeInOutCubicEmphasized) ? _animationController.animateTo(1.0, duration: kFadeOutDuration, curve: Curves.easeInOutCubicEmphasized)
: _animationController.animateTo(0.0, duration: kFadeInDuration, curve: Curves.easeOutCubic); : _animationController.animateTo(0.0, duration: kFadeInDuration, curve: Curves.easeOutCubic);
ticker.then<void>((void value) { ticker.then<void>((void value) {
if (mounted && wasHeldDown != _buttonHeldDown) if (mounted && wasHeldDown != _buttonHeldDown) {
_animate(); _animate();
}
}); });
} }
......
...@@ -928,8 +928,9 @@ class CupertinoDynamicColor extends Color with Diagnosticable { ...@@ -928,8 +928,9 @@ class CupertinoDynamicColor extends Color with Diagnosticable {
/// * [resolve], which is similar to this function, but returns a /// * [resolve], which is similar to this function, but returns a
/// non-nullable value, and does not allow a null `resolvable` color. /// non-nullable value, and does not allow a null `resolvable` color.
static Color? maybeResolve(Color? resolvable, BuildContext context) { static Color? maybeResolve(Color? resolvable, BuildContext context) {
if (resolvable == null) if (resolvable == null) {
return null; return null;
}
assert(context != null); assert(context != null);
return (resolvable is CupertinoDynamicColor) return (resolvable is CupertinoDynamicColor)
? resolvable.resolveFrom(context) ? resolvable.resolveFrom(context)
...@@ -1045,10 +1046,12 @@ class CupertinoDynamicColor extends Color with Diagnosticable { ...@@ -1045,10 +1046,12 @@ class CupertinoDynamicColor extends Color with Diagnosticable {
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
if (identical(this, other)) if (identical(this, other)) {
return true; return true;
if (other.runtimeType != runtimeType) }
if (other.runtimeType != runtimeType) {
return false; return false;
}
return other is CupertinoDynamicColor return other is CupertinoDynamicColor
&& other.value == value && other.value == value
&& other.color == color && other.color == color
...@@ -1097,26 +1100,35 @@ class CupertinoDynamicColor extends Color with Diagnosticable { ...@@ -1097,26 +1100,35 @@ class CupertinoDynamicColor extends Color with Diagnosticable {
@override @override
void debugFillProperties(DiagnosticPropertiesBuilder properties) { void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties); super.debugFillProperties(properties);
if (_debugLabel != null) if (_debugLabel != null) {
properties.add(MessageProperty('debugLabel', _debugLabel!)); properties.add(MessageProperty('debugLabel', _debugLabel!));
}
properties.add(createCupertinoColorProperty('color', color)); properties.add(createCupertinoColorProperty('color', color));
if (_isPlatformBrightnessDependent) if (_isPlatformBrightnessDependent) {
properties.add(createCupertinoColorProperty('darkColor', darkColor)); properties.add(createCupertinoColorProperty('darkColor', darkColor));
if (_isHighContrastDependent) }
if (_isHighContrastDependent) {
properties.add(createCupertinoColorProperty('highContrastColor', highContrastColor)); properties.add(createCupertinoColorProperty('highContrastColor', highContrastColor));
if (_isPlatformBrightnessDependent && _isHighContrastDependent) }
if (_isPlatformBrightnessDependent && _isHighContrastDependent) {
properties.add(createCupertinoColorProperty('darkHighContrastColor', darkHighContrastColor)); properties.add(createCupertinoColorProperty('darkHighContrastColor', darkHighContrastColor));
if (_isInterfaceElevationDependent) }
if (_isInterfaceElevationDependent) {
properties.add(createCupertinoColorProperty('elevatedColor', elevatedColor)); properties.add(createCupertinoColorProperty('elevatedColor', elevatedColor));
if (_isPlatformBrightnessDependent && _isInterfaceElevationDependent) }
if (_isPlatformBrightnessDependent && _isInterfaceElevationDependent) {
properties.add(createCupertinoColorProperty('darkElevatedColor', darkElevatedColor)); properties.add(createCupertinoColorProperty('darkElevatedColor', darkElevatedColor));
if (_isHighContrastDependent && _isInterfaceElevationDependent) }
if (_isHighContrastDependent && _isInterfaceElevationDependent) {
properties.add(createCupertinoColorProperty('highContrastElevatedColor', highContrastElevatedColor)); properties.add(createCupertinoColorProperty('highContrastElevatedColor', highContrastElevatedColor));
if (_isPlatformBrightnessDependent && _isHighContrastDependent && _isInterfaceElevationDependent) }
if (_isPlatformBrightnessDependent && _isHighContrastDependent && _isInterfaceElevationDependent) {
properties.add(createCupertinoColorProperty('darkHighContrastElevatedColor', darkHighContrastElevatedColor)); properties.add(createCupertinoColorProperty('darkHighContrastElevatedColor', darkHighContrastElevatedColor));
}
if (_debugResolveContext != null) if (_debugResolveContext != null) {
properties.add(DiagnosticsProperty<Element>('last resolved', _debugResolveContext)); properties.add(DiagnosticsProperty<Element>('last resolved', _debugResolveContext));
}
} }
} }
......
...@@ -1567,8 +1567,9 @@ class _ActionButtonParentDataWidget ...@@ -1567,8 +1567,9 @@ class _ActionButtonParentDataWidget
// Force a repaint. // Force a repaint.
final AbstractNode? targetParent = renderObject.parent; final AbstractNode? targetParent = renderObject.parent;
if (targetParent is RenderObject) if (targetParent is RenderObject) {
targetParent.markNeedsPaint(); targetParent.markNeedsPaint();
}
} }
} }
...@@ -1905,8 +1906,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1905,8 +1906,9 @@ class _RenderCupertinoDialogActions extends RenderBox
bool _hasCancelButton; bool _hasCancelButton;
bool get hasCancelButton => _hasCancelButton; bool get hasCancelButton => _hasCancelButton;
set hasCancelButton(bool newValue) { set hasCancelButton(bool newValue) {
if (newValue == _hasCancelButton) if (newValue == _hasCancelButton) {
return; return;
}
_hasCancelButton = newValue; _hasCancelButton = newValue;
markNeedsLayout(); markNeedsLayout();
...@@ -1915,8 +1917,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1915,8 +1917,9 @@ class _RenderCupertinoDialogActions extends RenderBox
Color get dialogColor => _buttonBackgroundPaint.color; Color get dialogColor => _buttonBackgroundPaint.color;
final Paint _buttonBackgroundPaint; final Paint _buttonBackgroundPaint;
set dialogColor(Color value) { set dialogColor(Color value) {
if (value == _buttonBackgroundPaint.color) if (value == _buttonBackgroundPaint.color) {
return; return;
}
_buttonBackgroundPaint.color = value; _buttonBackgroundPaint.color = value;
markNeedsPaint(); markNeedsPaint();
...@@ -1925,8 +1928,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1925,8 +1928,9 @@ class _RenderCupertinoDialogActions extends RenderBox
Color get dialogPressedColor => _pressedButtonBackgroundPaint.color; Color get dialogPressedColor => _pressedButtonBackgroundPaint.color;
final Paint _pressedButtonBackgroundPaint; final Paint _pressedButtonBackgroundPaint;
set dialogPressedColor(Color value) { set dialogPressedColor(Color value) {
if (value == _pressedButtonBackgroundPaint.color) if (value == _pressedButtonBackgroundPaint.color) {
return; return;
}
_pressedButtonBackgroundPaint.color = value; _pressedButtonBackgroundPaint.color = value;
markNeedsPaint(); markNeedsPaint();
...@@ -1935,8 +1939,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1935,8 +1939,9 @@ class _RenderCupertinoDialogActions extends RenderBox
Color get dividerColor => _dividerPaint.color; Color get dividerColor => _dividerPaint.color;
final Paint _dividerPaint; final Paint _dividerPaint;
set dividerColor(Color value) { set dividerColor(Color value) {
if (value == _dividerPaint.color) if (value == _dividerPaint.color) {
return; return;
}
_dividerPaint.color = value; _dividerPaint.color = value;
markNeedsPaint(); markNeedsPaint();
...@@ -1945,8 +1950,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1945,8 +1950,9 @@ class _RenderCupertinoDialogActions extends RenderBox
bool get isActionSheet => _isActionSheet; bool get isActionSheet => _isActionSheet;
bool _isActionSheet; bool _isActionSheet;
set isActionSheet(bool value) { set isActionSheet(bool value) {
if (value == _isActionSheet) if (value == _isActionSheet) {
return; return;
}
_isActionSheet = value; _isActionSheet = value;
markNeedsPaint(); markNeedsPaint();
...@@ -1981,8 +1987,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -1981,8 +1987,9 @@ class _RenderCupertinoDialogActions extends RenderBox
@override @override
void setupParentData(RenderBox child) { void setupParentData(RenderBox child) {
if (child.parentData is! _ActionButtonParentData) if (child.parentData is! _ActionButtonParentData) {
child.parentData = _ActionButtonParentData(); child.parentData = _ActionButtonParentData();
}
} }
@override @override
...@@ -2000,10 +2007,12 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -2000,10 +2007,12 @@ class _RenderCupertinoDialogActions extends RenderBox
if (childCount == 0) { if (childCount == 0) {
return 0.0; return 0.0;
} else if (isActionSheet) { } else if (isActionSheet) {
if (childCount == 1) if (childCount == 1) {
return firstChild!.computeMaxIntrinsicHeight(width) + dividerThickness; return firstChild!.computeMaxIntrinsicHeight(width) + dividerThickness;
if (hasCancelButton && childCount < 4) }
if (hasCancelButton && childCount < 4) {
return _computeMinIntrinsicHeightWithCancel(width); return _computeMinIntrinsicHeightWithCancel(width);
}
return _computeMinIntrinsicHeightStacked(width); return _computeMinIntrinsicHeightStacked(width);
} else if (childCount == 1) { } else if (childCount == 1) {
// If only 1 button, display the button across the entire dialog. // If only 1 button, display the button across the entire dialog.
...@@ -2070,8 +2079,9 @@ class _RenderCupertinoDialogActions extends RenderBox ...@@ -2070,8 +2079,9 @@ class _RenderCupertinoDialogActions extends RenderBox
// No buttons. Zero height. // No buttons. Zero height.
return 0.0; return 0.0;
} else if (isActionSheet) { } else if (isActionSheet) {
if (childCount == 1) if (childCount == 1) {
return firstChild!.computeMaxIntrinsicHeight(width) + dividerThickness; return firstChild!.computeMaxIntrinsicHeight(width) + dividerThickness;
}
return _computeMaxIntrinsicHeightStacked(width); return _computeMaxIntrinsicHeightStacked(width);
} else if (childCount == 1) { } else if (childCount == 1) {
// One button. Our max intrinsic height is equal to the button's. // One button. Our max intrinsic height is equal to the button's.
......
...@@ -66,8 +66,9 @@ class CupertinoUserInterfaceLevel extends InheritedWidget { ...@@ -66,8 +66,9 @@ class CupertinoUserInterfaceLevel extends InheritedWidget {
static CupertinoUserInterfaceLevelData of(BuildContext context) { static CupertinoUserInterfaceLevelData of(BuildContext context) {
assert(context != null); assert(context != null);
final CupertinoUserInterfaceLevel? query = context.dependOnInheritedWidgetOfExactType<CupertinoUserInterfaceLevel>(); final CupertinoUserInterfaceLevel? query = context.dependOnInheritedWidgetOfExactType<CupertinoUserInterfaceLevel>();
if (query != null) if (query != null) {
return query._data; return query._data;
}
throw FlutterError( throw FlutterError(
'CupertinoUserInterfaceLevel.of() called with a context that does not contain a CupertinoUserInterfaceLevel.\n' 'CupertinoUserInterfaceLevel.of() called with a context that does not contain a CupertinoUserInterfaceLevel.\n'
'No CupertinoUserInterfaceLevel ancestor could be found starting from the context that was passed ' 'No CupertinoUserInterfaceLevel ancestor could be found starting from the context that was passed '
...@@ -95,8 +96,9 @@ class CupertinoUserInterfaceLevel extends InheritedWidget { ...@@ -95,8 +96,9 @@ class CupertinoUserInterfaceLevel extends InheritedWidget {
static CupertinoUserInterfaceLevelData? maybeOf(BuildContext context) { static CupertinoUserInterfaceLevelData? maybeOf(BuildContext context) {
assert(context != null); assert(context != null);
final CupertinoUserInterfaceLevel? query = context.dependOnInheritedWidgetOfExactType<CupertinoUserInterfaceLevel>(); final CupertinoUserInterfaceLevel? query = context.dependOnInheritedWidgetOfExactType<CupertinoUserInterfaceLevel>();
if (query != null) if (query != null) {
return query._data; return query._data;
}
return null; return null;
} }
......
...@@ -351,8 +351,9 @@ class DefaultCupertinoLocalizations implements CupertinoLocalizations { ...@@ -351,8 +351,9 @@ class DefaultCupertinoLocalizations implements CupertinoLocalizations {
@override @override
String datePickerMinuteSemanticsLabel(int minute) { String datePickerMinuteSemanticsLabel(int minute) {
if (minute == 1) if (minute == 1) {
return '1 minute'; return '1 minute';
}
return '$minute minutes'; return '$minute minutes';
} }
......
...@@ -160,8 +160,9 @@ Widget _wrapWithBackground({ ...@@ -160,8 +160,9 @@ Widget _wrapWithBackground({
child: result, child: result,
); );
if (backgroundColor.alpha == 0xFF) if (backgroundColor.alpha == 0xFF) {
return childWithBackground; return childWithBackground;
}
return ClipRect( return ClipRect(
child: BackdropFilter( child: BackdropFilter(
......
...@@ -439,12 +439,14 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox { ...@@ -439,12 +439,14 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox {
// This method exists to allow controller to be non-null. It is only called with a null oldValue from constructor. // This method exists to allow controller to be non-null. It is only called with a null oldValue from constructor.
void _updateController(FixedExtentScrollController? oldValue, FixedExtentScrollController value) { void _updateController(FixedExtentScrollController? oldValue, FixedExtentScrollController value) {
if (value == oldValue) if (value == oldValue) {
return; return;
if (oldValue != null) }
if (oldValue != null) {
oldValue.removeListener(_handleScrollUpdate); oldValue.removeListener(_handleScrollUpdate);
else } else {
_currentIndex = value.initialItem; _currentIndex = value.initialItem;
}
value.addListener(_handleScrollUpdate); value.addListener(_handleScrollUpdate);
_controller = value; _controller = value;
} }
...@@ -452,8 +454,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox { ...@@ -452,8 +454,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox {
TextDirection get textDirection => _textDirection; TextDirection get textDirection => _textDirection;
TextDirection _textDirection; TextDirection _textDirection;
set textDirection(TextDirection value) { set textDirection(TextDirection value) {
if (textDirection == value) if (textDirection == value) {
return; return;
}
_textDirection = value; _textDirection = value;
markNeedsSemanticsUpdate(); markNeedsSemanticsUpdate();
} }
...@@ -469,8 +472,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox { ...@@ -469,8 +472,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox {
} }
void _handleScrollUpdate() { void _handleScrollUpdate() {
if (controller.selectedItem == _currentIndex) if (controller.selectedItem == _currentIndex) {
return; return;
}
_currentIndex = controller.selectedItem; _currentIndex = controller.selectedItem;
markNeedsSemanticsUpdate(); markNeedsSemanticsUpdate();
} }
...@@ -483,8 +487,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox { ...@@ -483,8 +487,9 @@ class _RenderCupertinoPickerSemantics extends RenderProxyBox {
@override @override
void assembleSemanticsNode(SemanticsNode node, SemanticsConfiguration config, Iterable<SemanticsNode> children) { void assembleSemanticsNode(SemanticsNode node, SemanticsConfiguration config, Iterable<SemanticsNode> children) {
if (children.isEmpty) if (children.isEmpty) {
return super.assembleSemanticsNode(node, config, children); return super.assembleSemanticsNode(node, config, children);
}
final SemanticsNode scrollable = children.first; final SemanticsNode scrollable = children.first;
final Map<int, SemanticsNode> indexedChildren = <int, SemanticsNode>{}; final Map<int, SemanticsNode> indexedChildren = <int, SemanticsNode>{};
scrollable.visitChildren((SemanticsNode child) { scrollable.visitChildren((SemanticsNode child) {
......
...@@ -76,8 +76,9 @@ class _RenderCupertinoSliverRefresh extends RenderSliver ...@@ -76,8 +76,9 @@ class _RenderCupertinoSliverRefresh extends RenderSliver
set refreshIndicatorLayoutExtent(double value) { set refreshIndicatorLayoutExtent(double value) {
assert(value != null); assert(value != null);
assert(value >= 0.0); assert(value >= 0.0);
if (value == _refreshIndicatorExtent) if (value == _refreshIndicatorExtent) {
return; return;
}
_refreshIndicatorExtent = value; _refreshIndicatorExtent = value;
markNeedsLayout(); markNeedsLayout();
} }
...@@ -89,8 +90,9 @@ class _RenderCupertinoSliverRefresh extends RenderSliver ...@@ -89,8 +90,9 @@ class _RenderCupertinoSliverRefresh extends RenderSliver
bool _hasLayoutExtent; bool _hasLayoutExtent;
set hasLayoutExtent(bool value) { set hasLayoutExtent(bool value) {
assert(value != null); assert(value != null);
if (value == _hasLayoutExtent) if (value == _hasLayoutExtent) {
return; return;
}
_hasLayoutExtent = value; _hasLayoutExtent = value;
markNeedsLayout(); markNeedsLayout();
} }
......
...@@ -186,30 +186,37 @@ mixin CupertinoRouteTransitionMixin<T> on PageRoute<T> { ...@@ -186,30 +186,37 @@ mixin CupertinoRouteTransitionMixin<T> on PageRoute<T> {
static bool _isPopGestureEnabled<T>(PageRoute<T> route) { static bool _isPopGestureEnabled<T>(PageRoute<T> route) {
// If there's nothing to go back to, then obviously we don't support // If there's nothing to go back to, then obviously we don't support
// the back gesture. // the back gesture.
if (route.isFirst) if (route.isFirst) {
return false; return false;
}
// If the route wouldn't actually pop if we popped it, then the gesture // If the route wouldn't actually pop if we popped it, then the gesture
// would be really confusing (or would skip internal routes), so disallow it. // would be really confusing (or would skip internal routes), so disallow it.
if (route.willHandlePopInternally) if (route.willHandlePopInternally) {
return false; return false;
}
// If attempts to dismiss this route might be vetoed such as in a page // If attempts to dismiss this route might be vetoed such as in a page
// with forms, then do not allow the user to dismiss the route with a swipe. // with forms, then do not allow the user to dismiss the route with a swipe.
if (route.hasScopedWillPopCallback) if (route.hasScopedWillPopCallback) {
return false; return false;
}
// Fullscreen dialogs aren't dismissible by back swipe. // Fullscreen dialogs aren't dismissible by back swipe.
if (route.fullscreenDialog) if (route.fullscreenDialog) {
return false; return false;
}
// If we're in an animation already, we cannot be manually swiped. // If we're in an animation already, we cannot be manually swiped.
if (route.animation!.status != AnimationStatus.completed) if (route.animation!.status != AnimationStatus.completed) {
return false; return false;
}
// If we're being popped into, we also cannot be swiped until the pop above // If we're being popped into, we also cannot be swiped until the pop above
// it completes. This translates to our secondary animation being // it completes. This translates to our secondary animation being
// dismissed. // dismissed.
if (route.secondaryAnimation!.status != AnimationStatus.dismissed) if (route.secondaryAnimation!.status != AnimationStatus.dismissed) {
return false; return false;
}
// If we're in a gesture already, we cannot start another. // If we're in a gesture already, we cannot start another.
if (isPopGestureInProgress(route)) if (isPopGestureInProgress(route)) {
return false; return false;
}
// Looks like a back gesture would be welcome! // Looks like a back gesture would be welcome!
return true; return true;
...@@ -657,8 +664,9 @@ class _CupertinoBackGestureDetectorState<T> extends State<_CupertinoBackGestureD ...@@ -657,8 +664,9 @@ class _CupertinoBackGestureDetectorState<T> extends State<_CupertinoBackGestureD
} }
void _handlePointerDown(PointerDownEvent event) { void _handlePointerDown(PointerDownEvent event) {
if (widget.enabledCallback()) if (widget.enabledCallback()) {
_recognizer.addPointer(event); _recognizer.addPointer(event);
}
} }
double _convertToLogical(double value) { double _convertToLogical(double value) {
...@@ -746,10 +754,11 @@ class _CupertinoBackGestureController<T> { ...@@ -746,10 +754,11 @@ class _CupertinoBackGestureController<T> {
// If the user releases the page before mid screen with sufficient velocity, // If the user releases the page before mid screen with sufficient velocity,
// or after mid screen, we should animate the page out. Otherwise, the page // or after mid screen, we should animate the page out. Otherwise, the page
// should be animated back in. // should be animated back in.
if (velocity.abs() >= _kMinFlingVelocity) if (velocity.abs() >= _kMinFlingVelocity) {
animateForward = velocity <= 0; animateForward = velocity <= 0;
else } else {
animateForward = controller.value > 0.5; animateForward = controller.value > 0.5;
}
if (animateForward) { if (animateForward) {
// The closer the panel is to dismissing, the shorter the animation is. // The closer the panel is to dismissing, the shorter the animation is.
...@@ -840,12 +849,15 @@ class _CupertinoEdgeShadowDecoration extends Decoration { ...@@ -840,12 +849,15 @@ class _CupertinoEdgeShadowDecoration extends Decoration {
double t, double t,
) { ) {
assert(t != null); assert(t != null);
if (a == null && b == null) if (a == null && b == null) {
return null; return null;
if (a == null) }
if (a == null) {
return b!._colors == null ? b : _CupertinoEdgeShadowDecoration._(b._colors!.map<Color>((Color color) => Color.lerp(null, color, t)!).toList()); return b!._colors == null ? b : _CupertinoEdgeShadowDecoration._(b._colors!.map<Color>((Color color) => Color.lerp(null, color, t)!).toList());
if (b == null) }
if (b == null) {
return a._colors == null ? a : _CupertinoEdgeShadowDecoration._(a._colors!.map<Color>((Color color) => Color.lerp(null, color, 1.0 - t)!).toList()); return a._colors == null ? a : _CupertinoEdgeShadowDecoration._(a._colors!.map<Color>((Color color) => Color.lerp(null, color, 1.0 - t)!).toList());
}
assert(b._colors != null || a._colors != null); assert(b._colors != null || a._colors != null);
// If it ever becomes necessary, we could allow decorations with different // If it ever becomes necessary, we could allow decorations with different
// length' here, similarly to how it is handled in [LinearGradient.lerp]. // length' here, similarly to how it is handled in [LinearGradient.lerp].
...@@ -860,15 +872,17 @@ class _CupertinoEdgeShadowDecoration extends Decoration { ...@@ -860,15 +872,17 @@ class _CupertinoEdgeShadowDecoration extends Decoration {
@override @override
_CupertinoEdgeShadowDecoration lerpFrom(Decoration? a, double t) { _CupertinoEdgeShadowDecoration lerpFrom(Decoration? a, double t) {
if (a is _CupertinoEdgeShadowDecoration) if (a is _CupertinoEdgeShadowDecoration) {
return _CupertinoEdgeShadowDecoration.lerp(a, this, t)!; return _CupertinoEdgeShadowDecoration.lerp(a, this, t)!;
}
return _CupertinoEdgeShadowDecoration.lerp(null, this, t)!; return _CupertinoEdgeShadowDecoration.lerp(null, this, t)!;
} }
@override @override
_CupertinoEdgeShadowDecoration lerpTo(Decoration? b, double t) { _CupertinoEdgeShadowDecoration lerpTo(Decoration? b, double t) {
if (b is _CupertinoEdgeShadowDecoration) if (b is _CupertinoEdgeShadowDecoration) {
return _CupertinoEdgeShadowDecoration.lerp(this, b, t)!; return _CupertinoEdgeShadowDecoration.lerp(this, b, t)!;
}
return _CupertinoEdgeShadowDecoration.lerp(this, null, t)!; return _CupertinoEdgeShadowDecoration.lerp(this, null, t)!;
} }
...@@ -879,8 +893,9 @@ class _CupertinoEdgeShadowDecoration extends Decoration { ...@@ -879,8 +893,9 @@ class _CupertinoEdgeShadowDecoration extends Decoration {
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
if (other.runtimeType != runtimeType) if (other.runtimeType != runtimeType) {
return false; return false;
}
return other is _CupertinoEdgeShadowDecoration return other is _CupertinoEdgeShadowDecoration
&& other._colors == _colors; && other._colors == _colors;
} }
......
...@@ -331,8 +331,9 @@ class _CupertinoSearchTextFieldState extends State<CupertinoSearchTextField> ...@@ -331,8 +331,9 @@ class _CupertinoSearchTextFieldState extends State<CupertinoSearchTextField>
void _defaultOnSuffixTap() { void _defaultOnSuffixTap() {
final bool textChanged = _effectiveController.text.isNotEmpty; final bool textChanged = _effectiveController.text.isNotEmpty;
_effectiveController.clear(); _effectiveController.clear();
if (widget.onChanged != null && textChanged) if (widget.onChanged != null && textChanged) {
widget.onChanged!(_effectiveController.text); widget.onChanged!(_effectiveController.text);
}
} }
@override @override
......
...@@ -303,8 +303,9 @@ class _SegmentedControlState<T extends Object> extends State<CupertinoSegmentedC ...@@ -303,8 +303,9 @@ class _SegmentedControlState<T extends Object> extends State<CupertinoSegmentedC
} }
void _onTap(T currentKey) { void _onTap(T currentKey) {
if (currentKey != _pressedKey) if (currentKey != _pressedKey) {
return; return;
}
if (currentKey != widget.groupValue) { if (currentKey != widget.groupValue) {
widget.onValueChanged(currentKey); widget.onValueChanged(currentKey);
} }
...@@ -312,20 +313,25 @@ class _SegmentedControlState<T extends Object> extends State<CupertinoSegmentedC ...@@ -312,20 +313,25 @@ class _SegmentedControlState<T extends Object> extends State<CupertinoSegmentedC
} }
Color? getTextColor(int index, T currentKey) { Color? getTextColor(int index, T currentKey) {
if (_selectionControllers[index].isAnimating) if (_selectionControllers[index].isAnimating) {
return _textColorTween.evaluate(_selectionControllers[index]); return _textColorTween.evaluate(_selectionControllers[index]);
if (widget.groupValue == currentKey) }
if (widget.groupValue == currentKey) {
return _unselectedColor; return _unselectedColor;
}
return _selectedColor; return _selectedColor;
} }
Color? getBackgroundColor(int index, T currentKey) { Color? getBackgroundColor(int index, T currentKey) {
if (_selectionControllers[index].isAnimating) if (_selectionControllers[index].isAnimating) {
return _childTweens[index].evaluate(_selectionControllers[index]); return _childTweens[index].evaluate(_selectionControllers[index]);
if (widget.groupValue == currentKey) }
if (widget.groupValue == currentKey) {
return _selectedColor; return _selectedColor;
if (_pressedKey == currentKey) }
if (_pressedKey == currentKey) {
return _pressedColor; return _pressedColor;
}
return _unselectedColor; return _unselectedColor;
} }
......
...@@ -359,21 +359,24 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -359,21 +359,24 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
double _value; double _value;
set value(double newValue) { set value(double newValue) {
assert(newValue != null && newValue >= 0.0 && newValue <= 1.0); assert(newValue != null && newValue >= 0.0 && newValue <= 1.0);
if (newValue == _value) if (newValue == _value) {
return; return;
}
_value = newValue; _value = newValue;
if (divisions != null) if (divisions != null) {
_position.animateTo(newValue, curve: Curves.fastOutSlowIn); _position.animateTo(newValue, curve: Curves.fastOutSlowIn);
else } else {
_position.value = newValue; _position.value = newValue;
}
markNeedsSemanticsUpdate(); markNeedsSemanticsUpdate();
} }
int? get divisions => _divisions; int? get divisions => _divisions;
int? _divisions; int? _divisions;
set divisions(int? value) { set divisions(int? value) {
if (value == _divisions) if (value == _divisions) {
return; return;
}
_divisions = value; _divisions = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -381,8 +384,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -381,8 +384,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
Color get activeColor => _activeColor; Color get activeColor => _activeColor;
Color _activeColor; Color _activeColor;
set activeColor(Color value) { set activeColor(Color value) {
if (value == _activeColor) if (value == _activeColor) {
return; return;
}
_activeColor = value; _activeColor = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -390,8 +394,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -390,8 +394,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
Color get thumbColor => _thumbColor; Color get thumbColor => _thumbColor;
Color _thumbColor; Color _thumbColor;
set thumbColor(Color value) { set thumbColor(Color value) {
if (value == _thumbColor) if (value == _thumbColor) {
return; return;
}
_thumbColor = value; _thumbColor = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -399,8 +404,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -399,8 +404,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
Color get trackColor => _trackColor; Color get trackColor => _trackColor;
Color _trackColor; Color _trackColor;
set trackColor(Color value) { set trackColor(Color value) {
if (value == _trackColor) if (value == _trackColor) {
return; return;
}
_trackColor = value; _trackColor = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -408,12 +414,14 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -408,12 +414,14 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
ValueChanged<double>? get onChanged => _onChanged; ValueChanged<double>? get onChanged => _onChanged;
ValueChanged<double>? _onChanged; ValueChanged<double>? _onChanged;
set onChanged(ValueChanged<double>? value) { set onChanged(ValueChanged<double>? value) {
if (value == _onChanged) if (value == _onChanged) {
return; return;
}
final bool wasInteractive = isInteractive; final bool wasInteractive = isInteractive;
_onChanged = value; _onChanged = value;
if (wasInteractive != isInteractive) if (wasInteractive != isInteractive) {
markNeedsSemanticsUpdate(); markNeedsSemanticsUpdate();
}
} }
ValueChanged<double>? onChangeStart; ValueChanged<double>? onChangeStart;
...@@ -423,8 +431,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -423,8 +431,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
TextDirection _textDirection; TextDirection _textDirection;
set textDirection(TextDirection value) { set textDirection(TextDirection value) {
assert(value != null); assert(value != null);
if (_textDirection == value) if (_textDirection == value) {
return; return;
}
_textDirection = value; _textDirection = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -436,8 +445,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -436,8 +445,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
double get _discretizedCurrentDragValue { double get _discretizedCurrentDragValue {
double dragValue = clampDouble(_currentDragValue, 0.0, 1.0); double dragValue = clampDouble(_currentDragValue, 0.0, 1.0);
if (divisions != null) if (divisions != null) {
dragValue = (dragValue * divisions!).round() / divisions!; dragValue = (dragValue * divisions!).round() / divisions!;
}
return dragValue; return dragValue;
} }
...@@ -499,8 +509,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -499,8 +509,9 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
@override @override
void handleEvent(PointerEvent event, BoxHitTestEntry entry) { void handleEvent(PointerEvent event, BoxHitTestEntry entry) {
assert(debugHandleEvent(event, entry)); assert(debugHandleEvent(event, entry));
if (event is PointerDownEvent && isInteractive) if (event is PointerDownEvent && isInteractive) {
_drag.addPointer(event); _drag.addPointer(event);
}
} }
@override @override
...@@ -563,12 +574,14 @@ class _RenderCupertinoSlider extends RenderConstrainedBox { ...@@ -563,12 +574,14 @@ class _RenderCupertinoSlider extends RenderConstrainedBox {
double get _semanticActionUnit => divisions != null ? 1.0 / divisions! : _kAdjustmentUnit; double get _semanticActionUnit => divisions != null ? 1.0 / divisions! : _kAdjustmentUnit;
void _increaseAction() { void _increaseAction() {
if (isInteractive) if (isInteractive) {
onChanged!(clampDouble(value + _semanticActionUnit, 0.0, 1.0)); onChanged!(clampDouble(value + _semanticActionUnit, 0.0, 1.0));
}
} }
void _decreaseAction() { void _decreaseAction() {
if (isInteractive) if (isInteractive) {
onChanged!(clampDouble(value - _semanticActionUnit, 0.0, 1.0)); onChanged!(clampDouble(value - _semanticActionUnit, 0.0, 1.0));
}
} }
} }
...@@ -534,8 +534,9 @@ class _SegmentedControlState<T> extends State<CupertinoSlidingSegmentedControl<T ...@@ -534,8 +534,9 @@ class _SegmentedControlState<T> extends State<CupertinoSlidingSegmentedControl<T
} }
void onHighlightChangedByGesture(T newValue) { void onHighlightChangedByGesture(T newValue) {
if (highlighted == newValue) if (highlighted == newValue) {
return; return;
}
setState(() { highlighted = newValue; }); setState(() { highlighted = newValue; });
// Additionally, start the thumb animation if the highlighted segment // Additionally, start the thumb animation if the highlighted segment
// changes. If the thumbController is already running, the render object's // changes. If the thumbController is already running, the render object's
...@@ -548,14 +549,16 @@ class _SegmentedControlState<T> extends State<CupertinoSlidingSegmentedControl<T ...@@ -548,14 +549,16 @@ class _SegmentedControlState<T> extends State<CupertinoSlidingSegmentedControl<T
} }
void onPressedChangedByGesture(T? newValue) { void onPressedChangedByGesture(T? newValue) {
if (pressed != newValue) if (pressed != newValue) {
setState(() { pressed = newValue; }); setState(() { pressed = newValue; });
}
} }
void onTapUp(TapUpDetails details) { void onTapUp(TapUpDetails details) {
// No gesture should interfere with an ongoing thumb drag. // No gesture should interfere with an ongoing thumb drag.
if (isThumbDragging) if (isThumbDragging) {
return; return;
}
final T segment = segmentForXPosition(details.localPosition.dx); final T segment = segmentForXPosition(details.localPosition.dx);
onPressedChangedByGesture(null); onPressedChangedByGesture(null);
if (segment != widget.groupValue) { if (segment != widget.groupValue) {
...@@ -818,8 +821,9 @@ class _RenderSegmentedControl<T> extends RenderBox ...@@ -818,8 +821,9 @@ class _RenderSegmentedControl<T> extends RenderBox
} }
_thumbScale = value; _thumbScale = value;
if (state.highlighted != null) if (state.highlighted != null) {
markNeedsPaint(); markNeedsPaint();
}
} }
int? get highlightedIndex => _highlightedIndex; int? get highlightedIndex => _highlightedIndex;
...@@ -995,8 +999,9 @@ class _RenderSegmentedControl<T> extends RenderBox ...@@ -995,8 +999,9 @@ class _RenderSegmentedControl<T> extends RenderBox
Rect? moveThumbRectInBound(Rect? thumbRect, List<RenderBox> children) { Rect? moveThumbRectInBound(Rect? thumbRect, List<RenderBox> children) {
assert(hasSize); assert(hasSize);
assert(children.length >= 2); assert(children.length >= 2);
if (thumbRect == null) if (thumbRect == null) {
return null; return null;
}
final Offset firstChildOffset = (children.first.parentData! as _SegmentedControlContainerBoxParentData).offset; final Offset firstChildOffset = (children.first.parentData! as _SegmentedControlContainerBoxParentData).offset;
final double leftMost = firstChildOffset.dx; final double leftMost = firstChildOffset.dx;
......
...@@ -206,8 +206,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt ...@@ -206,8 +206,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt
super.didUpdateWidget(oldWidget); super.didUpdateWidget(oldWidget);
_drag.dragStartBehavior = widget.dragStartBehavior; _drag.dragStartBehavior = widget.dragStartBehavior;
if (needsPositionAnimation || oldWidget.value != widget.value) if (needsPositionAnimation || oldWidget.value != widget.value) {
_resumePositionAnimation(isLinear: needsPositionAnimation); _resumePositionAnimation(isLinear: needsPositionAnimation);
}
} }
// `isLinear` must be true if the position animation is trying to move the // `isLinear` must be true if the position animation is trying to move the
...@@ -221,15 +222,17 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt ...@@ -221,15 +222,17 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt
position position
..curve = isLinear ? Curves.linear : Curves.ease ..curve = isLinear ? Curves.linear : Curves.ease
..reverseCurve = isLinear ? Curves.linear : Curves.ease.flipped; ..reverseCurve = isLinear ? Curves.linear : Curves.ease.flipped;
if (widget.value) if (widget.value) {
_positionController.forward(); _positionController.forward();
else } else {
_positionController.reverse(); _positionController.reverse();
}
} }
void _handleTapDown(TapDownDetails details) { void _handleTapDown(TapDownDetails details) {
if (isInteractive) if (isInteractive) {
needsPositionAnimation = false; needsPositionAnimation = false;
}
_reactionController.forward(); _reactionController.forward();
} }
...@@ -248,8 +251,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt ...@@ -248,8 +251,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt
} }
void _handleTapCancel() { void _handleTapCancel() {
if (isInteractive) if (isInteractive) {
_reactionController.reverse(); _reactionController.reverse();
}
} }
void _handleDragStart(DragStartDetails details) { void _handleDragStart(DragStartDetails details) {
...@@ -281,8 +285,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt ...@@ -281,8 +285,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt
// Deferring the animation to the next build phase. // Deferring the animation to the next build phase.
setState(() { needsPositionAnimation = true; }); setState(() { needsPositionAnimation = true; });
// Call onChanged when the user's intent to change value is clear. // Call onChanged when the user's intent to change value is clear.
if (position.value >= 0.5 != widget.value) if (position.value >= 0.5 != widget.value) {
widget.onChanged!(!widget.value); widget.onChanged!(!widget.value);
}
_reactionController.reverse(); _reactionController.reverse();
} }
...@@ -302,8 +307,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt ...@@ -302,8 +307,9 @@ class _CupertinoSwitchState extends State<CupertinoSwitch> with TickerProviderSt
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (needsPositionAnimation) if (needsPositionAnimation) {
_resumePositionAnimation(); _resumePositionAnimation();
}
return MouseRegion( return MouseRegion(
cursor: isInteractive && kIsWeb ? SystemMouseCursors.click : MouseCursor.defer, cursor: isInteractive && kIsWeb ? SystemMouseCursors.click : MouseCursor.defer,
child: Opacity( child: Opacity(
...@@ -423,8 +429,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -423,8 +429,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
bool _value; bool _value;
set value(bool value) { set value(bool value) {
assert(value != null); assert(value != null);
if (value == _value) if (value == _value) {
return; return;
}
_value = value; _value = value;
markNeedsSemanticsUpdate(); markNeedsSemanticsUpdate();
} }
...@@ -433,8 +440,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -433,8 +440,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
Color _activeColor; Color _activeColor;
set activeColor(Color value) { set activeColor(Color value) {
assert(value != null); assert(value != null);
if (value == _activeColor) if (value == _activeColor) {
return; return;
}
_activeColor = value; _activeColor = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -443,8 +451,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -443,8 +451,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
Color _trackColor; Color _trackColor;
set trackColor(Color value) { set trackColor(Color value) {
assert(value != null); assert(value != null);
if (value == _trackColor) if (value == _trackColor) {
return; return;
}
_trackColor = value; _trackColor = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -453,8 +462,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -453,8 +462,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
CupertinoThumbPainter _thumbPainter; CupertinoThumbPainter _thumbPainter;
set thumbColor(Color value) { set thumbColor(Color value) {
assert(value != null); assert(value != null);
if (value == thumbColor) if (value == thumbColor) {
return; return;
}
_thumbPainter = CupertinoThumbPainter.switchThumb(color: value); _thumbPainter = CupertinoThumbPainter.switchThumb(color: value);
markNeedsPaint(); markNeedsPaint();
} }
...@@ -462,8 +472,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -462,8 +472,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
ValueChanged<bool>? get onChanged => _onChanged; ValueChanged<bool>? get onChanged => _onChanged;
ValueChanged<bool>? _onChanged; ValueChanged<bool>? _onChanged;
set onChanged(ValueChanged<bool>? value) { set onChanged(ValueChanged<bool>? value) {
if (value == _onChanged) if (value == _onChanged) {
return; return;
}
final bool wasInteractive = isInteractive; final bool wasInteractive = isInteractive;
_onChanged = value; _onChanged = value;
if (wasInteractive != isInteractive) { if (wasInteractive != isInteractive) {
...@@ -476,8 +487,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -476,8 +487,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
TextDirection _textDirection; TextDirection _textDirection;
set textDirection(TextDirection value) { set textDirection(TextDirection value) {
assert(value != null); assert(value != null);
if (_textDirection == value) if (_textDirection == value) {
return; return;
}
_textDirection = value; _textDirection = value;
markNeedsPaint(); markNeedsPaint();
} }
...@@ -500,8 +512,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox { ...@@ -500,8 +512,9 @@ class _RenderCupertinoSwitch extends RenderConstrainedBox {
void describeSemanticsConfiguration(SemanticsConfiguration config) { void describeSemanticsConfiguration(SemanticsConfiguration config) {
super.describeSemanticsConfiguration(config); super.describeSemanticsConfiguration(config);
if (isInteractive) if (isInteractive) {
config.onTap = _state._handleTap; config.onTap = _state._handleTap;
}
config.isEnabled = isInteractive; config.isEnabled = isInteractive;
config.isToggled = _value; config.isToggled = _value;
......
...@@ -190,8 +190,9 @@ class _CupertinoTabViewState extends State<CupertinoTabView> { ...@@ -190,8 +190,9 @@ class _CupertinoTabViewState extends State<CupertinoTabView> {
settings: settings, settings: settings,
); );
} }
if (widget.onGenerateRoute != null) if (widget.onGenerateRoute != null) {
return widget.onGenerateRoute!(settings); return widget.onGenerateRoute!(settings);
}
return null; return null;
} }
......
...@@ -930,21 +930,26 @@ class _CupertinoTextFieldState extends State<CupertinoTextField> with Restoratio ...@@ -930,21 +930,26 @@ class _CupertinoTextFieldState extends State<CupertinoTextField> with Restoratio
bool _shouldShowSelectionHandles(SelectionChangedCause? cause) { bool _shouldShowSelectionHandles(SelectionChangedCause? cause) {
// When the text field is activated by something that doesn't trigger the // When the text field is activated by something that doesn't trigger the
// selection overlay, we shouldn't show the handles either. // selection overlay, we shouldn't show the handles either.
if (!_selectionGestureDetectorBuilder.shouldShowSelectionToolbar) if (!_selectionGestureDetectorBuilder.shouldShowSelectionToolbar) {
return false; return false;
}
// On iOS, we don't show handles when the selection is collapsed. // On iOS, we don't show handles when the selection is collapsed.
if (_effectiveController.selection.isCollapsed) if (_effectiveController.selection.isCollapsed) {
return false; return false;
}
if (cause == SelectionChangedCause.keyboard) if (cause == SelectionChangedCause.keyboard) {
return false; return false;
}
if (cause == SelectionChangedCause.scribble) if (cause == SelectionChangedCause.scribble) {
return true; return true;
}
if (_effectiveController.text.isNotEmpty) if (_effectiveController.text.isNotEmpty) {
return true; return true;
}
return false; return false;
} }
...@@ -1088,8 +1093,9 @@ class _CupertinoTextFieldState extends State<CupertinoTextField> with Restoratio ...@@ -1088,8 +1093,9 @@ class _CupertinoTextFieldState extends State<CupertinoTextField> with Restoratio
// Also call onChanged when the clear button is tapped. // Also call onChanged when the clear button is tapped.
final bool textChanged = _effectiveController.text.isNotEmpty; final bool textChanged = _effectiveController.text.isNotEmpty;
_effectiveController.clear(); _effectiveController.clear();
if (widget.onChanged != null && textChanged) if (widget.onChanged != null && textChanged) {
widget.onChanged!(_effectiveController.text); widget.onChanged!(_effectiveController.text);
}
} : null, } : null,
child: Padding( child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 6.0), padding: const EdgeInsets.symmetric(horizontal: 6.0),
......
...@@ -580,8 +580,9 @@ class _CupertinoTextSelectionToolbarItemsElement extends RenderObjectElement { ...@@ -580,8 +580,9 @@ class _CupertinoTextSelectionToolbarItemsElement extends RenderObjectElement {
void visitChildren(ElementVisitor visitor) { void visitChildren(ElementVisitor visitor) {
slotToChild.values.forEach(visitor); slotToChild.values.forEach(visitor);
for (final Element child in _children) { for (final Element child in _children) {
if (!_forgottenChildren.contains(child)) if (!_forgottenChildren.contains(child)) {
visitor(child); visitor(child);
}
} }
} }
......
...@@ -79,8 +79,9 @@ class CupertinoThumbPainter { ...@@ -79,8 +79,9 @@ class CupertinoThumbPainter {
Radius.circular(rect.shortestSide / 2.0), Radius.circular(rect.shortestSide / 2.0),
); );
for (final BoxShadow shadow in shadows) for (final BoxShadow shadow in shadows) {
canvas.drawRRect(rrect.shift(shadow.offset), shadow.toPaint()); canvas.drawRRect(rrect.shift(shadow.offset), shadow.toPaint());
}
canvas.drawRRect( canvas.drawRRect(
rrect.inflate(0.5), rrect.inflate(0.5),
......
...@@ -1016,8 +1016,9 @@ void main() { ...@@ -1016,8 +1016,9 @@ void main() {
await tester.pump(const Duration(milliseconds: 1)); await tester.pump(const Duration(milliseconds: 1));
expect(flying(tester, find.text('Page 2')), findsOneWidget); expect(flying(tester, find.text('Page 2')), findsOneWidget);
final Size size = tester.getSize(flying(tester, find.text('Page 2'))); final Size size = tester.getSize(flying(tester, find.text('Page 2')));
if (previousSize != null) if (previousSize != null) {
expect(size, previousSize); expect(size, previousSize);
}
previousSize = size; previousSize = size;
} }
}); });
......
...@@ -981,20 +981,24 @@ void main() { ...@@ -981,20 +981,24 @@ void main() {
testWidgets('when route is not fullscreenDialog, it has a _CupertinoEdgeShadowDecoration', (WidgetTester tester) async { testWidgets('when route is not fullscreenDialog, it has a _CupertinoEdgeShadowDecoration', (WidgetTester tester) async {
PaintPattern paintsShadowRect({required double dx, required Color color}) { PaintPattern paintsShadowRect({required double dx, required Color color}) {
return paints..everything((Symbol methodName, List<dynamic> arguments) { return paints..everything((Symbol methodName, List<dynamic> arguments) {
if (methodName != #drawRect) if (methodName != #drawRect) {
return true; return true;
}
final Rect rect = arguments[0] as Rect; final Rect rect = arguments[0] as Rect;
final Color paintColor = (arguments[1] as Paint).color; final Color paintColor = (arguments[1] as Paint).color;
if (rect.top != 0 || rect.width != 1.0 || rect.height != 600) // _CupertinoEdgeShadowDecoration draws the shadows with a series of
// _CupertinoEdgeShadowDecoration draws the shadows with a series of // differently colored 1px-wide rects. Skip rects that aren't being
// differently colored 1px-wide rects. Skip rects that aren't being // drawn by the _CupertinoEdgeShadowDecoration.
// drawn by the _CupertinoEdgeShadowDecoration. if (rect.top != 0 || rect.width != 1.0 || rect.height != 600) {
return true; return true;
if ((rect.left - dx).abs() >= 1) }
// Skip calls for rects until the one with the given position offset // Skip calls for rects until the one with the given position offset
if ((rect.left - dx).abs() >= 1) {
return true; return true;
if (paintColor.value == color.value) }
if (paintColor.value == color.value) {
return true; return true;
}
throw ''' throw '''
For a rect with an expected left-side position: $dx (drawn at ${rect.left}): For a rect with an expected left-side position: $dx (drawn at ${rect.left}):
Expected a rect with color: $color, Expected a rect with color: $color,
...@@ -1067,14 +1071,16 @@ void main() { ...@@ -1067,14 +1071,16 @@ void main() {
testWidgets('when route is fullscreenDialog, it has no visible _CupertinoEdgeShadowDecoration', (WidgetTester tester) async { testWidgets('when route is fullscreenDialog, it has no visible _CupertinoEdgeShadowDecoration', (WidgetTester tester) async {
PaintPattern paintsNoShadows() { PaintPattern paintsNoShadows() {
return paints..everything((Symbol methodName, List<dynamic> arguments) { return paints..everything((Symbol methodName, List<dynamic> arguments) {
if (methodName != #drawRect) if (methodName != #drawRect) {
return true; return true;
}
final Rect rect = arguments[0] as Rect; final Rect rect = arguments[0] as Rect;
// _CupertinoEdgeShadowDecoration draws the shadows with a series of // _CupertinoEdgeShadowDecoration draws the shadows with a series of
// differently colored 1px rects. Skip all rects not drawn by a // differently colored 1px rects. Skip all rects not drawn by a
// _CupertinoEdgeShadowDecoration. // _CupertinoEdgeShadowDecoration.
if (rect.width != 1.0) if (rect.width != 1.0) {
return true; return true;
}
throw ''' throw '''
Expected: no rects with a width of 1px. Expected: no rects with a width of 1px.
Found: $rect. Found: $rect.
......
...@@ -25,8 +25,9 @@ Rect currentUnscaledThumbRect(WidgetTester tester, { bool useGlobalCoordinate = ...@@ -25,8 +25,9 @@ Rect currentUnscaledThumbRect(WidgetTester tester, { bool useGlobalCoordinate =
// Using dynamic to access private class in test. // Using dynamic to access private class in test.
// ignore: avoid_dynamic_calls // ignore: avoid_dynamic_calls
final Rect local = renderSegmentedControl.currentThumbRect as Rect; final Rect local = renderSegmentedControl.currentThumbRect as Rect;
if (!useGlobalCoordinate) if (!useGlobalCoordinate) {
return local; return local;
}
final RenderBox segmentedControl = renderSegmentedControl as RenderBox; final RenderBox segmentedControl = renderSegmentedControl as RenderBox;
return local.shift(segmentedControl.localToGlobal(Offset.zero)); return local.shift(segmentedControl.localToGlobal(Offset.zero));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment