Is there any way to implement Wrap.builder to make the widget tree build only widgets that are on-screen, not all of the children at once like ListView.builder does?
Example
final myList= List.Generate(25,(i)=>'index: ${i+1}');
Wrap.builder(
itemCount: myList.length,
itemBuilder: (context,i) => Text(myList[i]),
);