Commit d29a94c3 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Deploy Scrollable2.ensureVisible (#7951)

Also, switch Stepper over to using sliver-based scrolling.
parent 2432b520
...@@ -193,6 +193,7 @@ class Focus extends StatefulWidget { ...@@ -193,6 +193,7 @@ class Focus extends StatefulWidget {
if (focusScope != null) { if (focusScope != null) {
focusScope.focusState._setFocusedWidget(key); focusScope.focusState._setFocusedWidget(key);
Scrollable.ensureVisible(focusedContext); Scrollable.ensureVisible(focusedContext);
Scrollable2.ensureVisible(focusedContext);
} }
} }
...@@ -360,6 +361,7 @@ class _FocusState extends State<Focus> { ...@@ -360,6 +361,7 @@ class _FocusState extends State<Focus> {
if (focusedContext == null) if (focusedContext == null)
return; return;
Scrollable.ensureVisible(focusedContext); Scrollable.ensureVisible(focusedContext);
Scrollable2.ensureVisible(focusedContext);
} }
@override @override
......
...@@ -249,6 +249,7 @@ class _FlutterDriverExtension { ...@@ -249,6 +249,7 @@ class _FlutterDriverExtension {
ScrollIntoView scrollIntoViewCommand = command; ScrollIntoView scrollIntoViewCommand = command;
Finder target = await _waitForElement(_createFinder(scrollIntoViewCommand.finder)); Finder target = await _waitForElement(_createFinder(scrollIntoViewCommand.finder));
await Scrollable.ensureVisible(target.evaluate().single, duration: const Duration(milliseconds: 100)); await Scrollable.ensureVisible(target.evaluate().single, duration: const Duration(milliseconds: 100));
await Scrollable2.ensureVisible(target.evaluate().single, duration: const Duration(milliseconds: 100));
return new ScrollResult(); return new ScrollResult();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment