Flutter ListView | Different types of listView | Static | Dynamic | Interactive List Views

Опубликовано: 29 Июль 2024
на канале: True Coders
846
20

In this tutorial, we are studying ListView and its examples. We will cover three types of ListViews: Static ListView, Dynamic ListView, and Interactive ListView. We will also introduce some new widgets like Container, ListTile, Row, Column, and SizedBox.

In the Dynamic ListView section, we will study ListView.builder. ListView.builder is used for dynamically creating list items as they scroll into view. This is useful for displaying data from a database or API. In this section, we will also study Lists with Data Models, which are used for more complex applications where you might want to create a list of custom data models.
Lastly, we will study Interactive Lists. You can add interactivity to your list items, such as tapping, deleting, or updating items.

Code:
https://github.com/truecoder-001/Dart...

00:10 - ListView Introduction.
00:55 - Static ListView.
16:50 - Dynamic ListView.
22:42 - Lists with Data Models.
26:42 - Interactive List.