We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392d97f commit d1b6622Copy full SHA for d1b6622
1 file changed
test/flutter_switch_test.dart
@@ -4,10 +4,11 @@ import 'package:flutter_test/flutter_test.dart';
4
import '../lib/flutter_switch.dart';
5
6
void main() {
7
- final alignToggleIndicatorFinder = find.byWidgetPredicate(
8
- (widget) => widget is Align && widget.child is Container);
9
-
10
group("FlutterSwitch", () {
+
+ final alignToggleIndicatorFinder = find.byWidgetPredicate(
+ (widget) => widget is Align && widget.child is Container);
11
12
testWidgets(
13
"displays the toggle indicator on the right if the given value is true",
14
(WidgetTester tester) async {
0 commit comments