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