We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3711fd commit ad4acf8Copy full SHA for ad4acf8
lib/src/effect_widget.dart
@@ -68,7 +68,11 @@ class _EffectWidgetState extends State<EffectWidget> {
68
void didUpdateWidget(covariant EffectWidget oldWidget) {
69
super.didUpdateWidget(oldWidget);
70
71
- start= widget.start ?? widget.end;
+ // TODO: This was introduced in 7th commit of update pack v2 for some reason
72
+ // but it breaks the scroll transitions. So we've disabled it for now. So if
73
+ // something breaks in the future, this is the first place to look!
74
+ // start= widget.start ?? widget.end;
75
+
76
if (oldWidget.end != widget.end &&
77
oldWidget.end.runtimeType == widget.end.runtimeType &&
78
start.runtimeType == end.runtimeType) {
0 commit comments