Skip to content

Commit e0e8898

Browse files
committed
minor change
1 parent f44c50c commit e0e8898

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

lib/animated_toggle_switch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import 'package:flutter/foundation.dart';
88
import 'package:flutter/gestures.dart';
99
import 'package:flutter/material.dart';
1010

11-
part 'src/animation_type_builder.dart';
1211
part 'src/animations.dart';
1312
part 'src/properties.dart';
1413
part 'src/style.dart';
1514
part 'src/tweens.dart';
1615
part 'src/cursors.dart';
16+
part 'src/widgets/animation_type_builder.dart';
1717
part 'src/foreground_indicator_transition.dart';
1818
part 'src/widgets/animated_toggle_switch.dart';
1919
part 'src/widgets/custom_animated_toggle_switch.dart';

lib/src/animations.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
part of 'package:animated_toggle_switch/animated_toggle_switch.dart';
22

3+
// this Animation is not covered because it contains not logic but
4+
// forwards all methods to its parent Animation.
5+
// coverage:ignore-start
36
/// This class is a proxy for another animation.
47
///
58
/// It is used for passing animations in builders without exposing the real
@@ -30,3 +33,4 @@ class _PrivateAnimation<T> extends Animation<T> {
3033
@override
3134
T get value => _parent.value;
3235
}
36+
// coverage:ignore-end
File renamed without changes.

0 commit comments

Comments
 (0)