some more revert

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2023-04-20 17:31:58 +05:30
committed by xsahil03x
parent a909261072
commit a1a4e55e75
@@ -26,8 +26,12 @@ class UnboundedCustomScrollView extends CustomScrollView {
super.slivers,
super.semanticChildCount,
super.dragStartBehavior,
super.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
}) : _anchor = anchor;
ScrollViewKeyboardDismissBehavior? keyboardDismissBehavior,
}) : _anchor = anchor,
super(
keyboardDismissBehavior: keyboardDismissBehavior ??
ScrollViewKeyboardDismissBehavior.manual,
);
// [CustomScrollView] enforces constraints on [CustomScrollView.anchor], so
// we need our own version.