In Flutter I have a SingleChildScrollView with a column as the child. Inside that column is 3 widgets: A ListView.separated widget, a sized box, and a different ListView.separated widget.
The ListView.separated widgets have shrinkWrap set to true and physics set to NeverScrollableScrollPhysics() to allow the SingleChildScrollView to handle scrolling.
My question is, are the two ListView widgets loaded lazily (on demand) or does the SingleChildScrollView and column parent mean they are loaded in full when the page loads?