Flutter: Scrolling to a widget in ListView

By far, the easiest solution is to use Scrollable.ensureVisible(context). As it does everything for you and work with any widget size. Fetching the context using GlobalKey. The problem is that ListView won’t render non-visible items. Meaning that your target most likely will not be built at all. Which means your target will have no context … Read more