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();
  ),