RenderIndexedSemantics ऑब्जेक्ट को लेआउट के दौरान एक अनंत आकार दिया गया था

Aug 16 2020

जब मुझे 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 Aug 16 2020 at 12:53

सेटअप गलत है।

यह इस तरह होना चाहिए,

SafeArea(
  child: Scaffold(
    body:ListView.builder();
  ),