Intermediate
Flutter
Q59 / 100
What is SingleChildScrollView used for in Flutter?
Correct! Well done.
Incorrect.
The correct answer is B) Making a single-child widget scrollable when content overflows the available space
B
Correct Answer
Making a single-child widget scrollable when content overflows the available space
Explanation
SingleChildScrollView makes a single child widget scrollable. It is ideal when screen content might overflow (e.g., a form on a small screen). For large item lists, prefer ListView.builder for better performance.
Progress
59/100