Chapters

Hide chapters

Flutter Apprentice

Second Edition · Flutter 2.5.1 · Dart 2.14.2 · Android Studio 2020.3.1

Section IV: Networking, Persistence and State

Section 4: 7 chapters
Show chapters Hide chapters

Appendices

Section 7: 2 chapters
Show chapters Hide chapters

A. Appendix A: Chapter 5 Solution 1
Written by Vincent Ngo

Heads up... You're reading this book for free, with parts of this chapter shown beyond this point as scrambled text.

First, you need to make ExploreScreen a StatefulWidget because you need to preserve the state of the scroll controller.

Next, add a ScrollController property in _ExploreScreenState:

late ScrollController _controller;

Then, add a function called scrollListener(), which is the function callback that will listen to the scroll offsets.

void _scrollListener() {
  // 1
  if (_controller.offset >= _controller.position.maxScrollExtent &&
      !_controller.position.outOfRange) {
    print('i am at the bottom!');
  }
  // 2
  if (_controller.offset <= _controller.position.minScrollExtent &&
      !_controller.position.outOfRange) {
    print('i am at the top!');
  }
}

Here’s how the code works:

  1. Check the scroll offset to see if the position is greater than or equal to the maxScrollExtent. If so, the user has scrolled to the very bottom.
  2. Check if the scroll offset is less than or equal to minScrollExtent. If so, the user has scrolled to the very top.

Within _ExploreScreenState, override initState(), as shown below:

@override
void initState() {
  super.initState();
  // 1
  _controller = ScrollController();
  // 2
  _controller.addListener(_scrollListener);
}

Here’s how the code works:

  1. You initialize the scroll controller.
  2. You add a listener to the controller. Every time the user scrolls, scrollListener() will get called.

Within the ExploreScreen’s parent ListView, all you have to do is set the scroll controller, as shown below:

return ListView(
        controller: _controller,
        ...

That will tell the scroll controller to listen to this particular list view’s scroll events.

Finally, add a function called dispose().

@override
void dispose() {
  _controller.removeListener(_scrollListener);
  super.dispose();
}

The framework calls dispose() when you permanently remove the object and its state from the tree. It’s important to remember to handle any memory cleanup, such as unsubscribing from streams and disposing of animations or controllers. In this case, you’re removing the scroll listener.

Hot restart, scroll to the botton and top, and see the printed statements in the Run console:

Performing hot restart...
Syncing files to device iPhone 8...
Restarted application in 1,086ms.
flutter: i am at the bottom!
flutter: i am at the top!
flutter: i am at the bottom!
flutter: i am at the top!

Here are some examples of when you might need a scroll controller:

  • Detect if you’re at a certain offset.
  • Control the scroll movement by animating to a specific index.
  • Check to see if the scroll view has started, stopped or ended.
Have a technical question? Want to report a bug? You can ask questions and report bugs to the book authors in our official book forum here.
© 2024 Kodeco Inc.

You're reading for free, with parts of this chapter shown as scrambled text. Unlock this book, and our entire catalogue of books and videos, with a Kodeco Personal Plan.

Unlock now