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