Flutter 플러터 컨테이너가 다른 컨테이너 안에 있을 때 너비와 높이 제약을 존중하지 않는 이유는 무엇인가요?, Why Flutter Container does not respects its width and height constraints when it is inside other Container
질문 Container( width: 200.0, height: 200.0, child: Container( width: 50.0, height: 50.0, decoration: BoxDecoration( shape: BoxShape.circle, color: Colors.red ), ), ) I've been trying to find the answer in the Container class docs but I did not find it. Update: After a long time, I understood the problem. All views inside a layout must have width, height, x position, and y position. (This applies ..
2023. 9. 24.