본문 바로가기
Develop/Flutter

Incorrect use of ParentDataWidget.

by 3-stack 2022. 3. 28.

플러터 Positioned 클래스 사용중 다음과 같은 오류를 만났다.

 

해결방법은 여기에 있었다.

The ParentDataWidget Positioned(left: 0.0, top: 0.0, right: 0.0, bottom: 0.0) wants to apply ParentData of type StackParentData to a RenderObject, which has been set up to accept ParentData of incompatible type FlexParentData.

 

Positioned 클래스를 사용하려면 부모클래스 Stack을 사용해야한다.

 

 

 

댓글