Beginner Flutter
Q22 / 100

What widget provides a scrollable list of items in Flutter?

Correct! Well done.

Incorrect.

The correct answer is B) ListView

B

Correct Answer

ListView

Explanation

ListView is a scrollable, linear list of widgets. For large or infinite lists, use ListView.builder() which lazily builds items on demand rather than building all items upfront into memory.

Progress
22/100