RenderIndexedSemantics ऑब्जेक्ट को लेआउट के दौरान एक अनंत आकार दिया गया था
जब मुझे listviewbuilder
मेरे ऐप का उपयोग करना होता है तो मुझे यह त्रुटि मिलती है
ListView.builder(
padding: const EdgeInsets.all(0),
itemCount: 1,
itemBuilder: (BuildContext context, int index) {
return Scaffold(
body: SafeArea( //and the rest of codes...
जवाब
1 ArshShaikh
सेटअप गलत है।
यह इस तरह होना चाहिए,
SafeArea(
child: Scaffold(
body:ListView.builder();
),