Skip to content

Commit 03da742

Browse files
committed
FIX Publish Warnings
- FIX Publish Warnings. - Remove GitIgnored files.
1 parent 786d533 commit 03da742

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

example

lib/breakpoint.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Breakpoint {
55
final double start;
66
final double end;
77
final String? name;
8-
final dynamic? data;
8+
final dynamic data;
99

1010
const Breakpoint(
1111
{required this.start, required this.end, this.name, this.data});

lib/utils/scroll_behavior.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class BouncingScrollWrapper extends StatelessWidget {
3131

3232
static Widget builder(BuildContext context, Widget child,
3333
{bool dragWithMouse = false}) {
34-
return BouncingScrollWrapper(child: child, dragWithMouse: dragWithMouse);
34+
return BouncingScrollWrapper(dragWithMouse: dragWithMouse, child: child);
3535
}
3636

3737
@override
@@ -74,7 +74,7 @@ class ClampingScrollWrapper extends StatelessWidget {
7474

7575
static Widget builder(BuildContext context, Widget child,
7676
{bool dragWithMouse = false}) {
77-
return ClampingScrollWrapper(child: child, dragWithMouse: dragWithMouse);
77+
return ClampingScrollWrapper(dragWithMouse: dragWithMouse, child: child);
7878
}
7979

8080
@override

0 commit comments

Comments
 (0)