Unverified Commit c6e1a4dc authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Fix formatting (#121167)

parent 7d497ce8
...@@ -101,16 +101,20 @@ class TabController extends ChangeNotifier { ...@@ -101,16 +101,20 @@ class TabController extends ChangeNotifier {
/// ///
/// The `initialIndex` must be valid given [length] and must not be null. If /// The `initialIndex` must be valid given [length] and must not be null. If
/// [length] is zero, then `initialIndex` must be 0 (the default). /// [length] is zero, then `initialIndex` must be 0 (the default).
TabController({ int initialIndex = 0, Duration? animationDuration, required this.length, required TickerProvider vsync}) TabController({
: assert(length >= 0), int initialIndex = 0,
assert(initialIndex >= 0 && (length == 0 || initialIndex < length)), Duration? animationDuration,
_index = initialIndex, required this.length,
_previousIndex = initialIndex, required TickerProvider vsync,
_animationDuration = animationDuration ?? kTabScrollDuration, }) : assert(length >= 0),
_animationController = AnimationController.unbounded( assert(initialIndex >= 0 && (length == 0 || initialIndex < length)),
value: initialIndex.toDouble(), _index = initialIndex,
vsync: vsync, _previousIndex = initialIndex,
); _animationDuration = animationDuration ?? kTabScrollDuration,
_animationController = AnimationController.unbounded(
value: initialIndex.toDouble(),
vsync: vsync,
);
// Private constructor used by `_copyWith`. This allows a new TabController to // Private constructor used by `_copyWith`. This allows a new TabController to
// be created without having to create a new animationController. // be created without having to create a new animationController.
......
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