Flutter ListView

Learn and understand how to use the ListView widget in Flutter to display lists and scrollable interfaces. By Emmanuel Okiche 🇳🇬.

4.3 (6) · 1 Review

Save for later
Comments
Share

Who is this for?

This course is for Flutter, iOS and Android developers seeking to learn how lists and collection type of interfaces are created in Flutter. It is expected that you have knowledge of setting up a basic Flutter application before taiking this course.

Covered concepts

  • Explore ListView and its constructors
  • Scroll Physics and other ListView properties
  • Scroll Animations and NotificationListener
  • Infinite Loading List
  • Use AnimatedList to animate list items
  • Other variations of ListView and ScrollViews

Part 1: Explore ListView

01
Toggle description

What is a ListView? Get to know this widget, explore some of its properties and see how to display a list of data.

Toggle description

Explore different variations of the ListView widget through its constructors and understand their differences.

Toggle description

See how the ScrollPhysics differs on Android and iOS and learn about the primary property and how it affects scrolling in the viewport.

Toggle description

See how different properties affect the rendering of the ListView and its children and learn when to use them.

Toggle description

Learn how to control scrolling and listen for events of a ListView through the ScrollController class.

Part 2: ListView in Action

Toggle description

Display the result from an online API response in our application using the ListView.builder() constructor.

Toggle description

Make a new request to load more items when you scroll to the end of the ListView and display an item loading state while making the network call.

Toggle description

Animate the scroll to top FloatingActionButton based on the scroll direction of the ListView widget.

Toggle description

Learn how to use the AnimatedList widget to incorporate animations when adding and removing items from the the List.

Toggle description

Get a basic introduction to other ScrollViews like the GridView widget and learn when to use a CustomScrollView.