Flutter child를 사용하면 안 되는 경우

줍줍·2023년 8월 29일
0

Flutter

목록 보기
6/11

body: Column(children: [
            Container(
              height: 100, // 명시적인 높이 추가
              child: Row(
                children: [
                  Flexible(
                    child: Container(color: Colors.blue), // 첫 번째 블루 컨테이너
                    flex: 7,
                  ),
                  Flexible(
                    child: Container(color: Colors.green), // 그린 컨테이너
                    flex: 7,
                  ),
                  Flexible(
                    child: Container(color: Colors.blue), // 두 번째 블루 컨테이너
                    flex: 7,
                  ),
                ],
              ),
            ),
            Container(
              height: 100, // 명시적인 높이 추가
              child: Row(
                children: [
                  Flexible(
                    child: Container(color: Colors.green), // 첫 번째 블루 컨테이너
                    flex: 7,
                  ),
                  Flexible(
                    child: Container(color: Colors.blue), // 그린 컨테이너
                    flex: 7,
                  ),
                  Flexible(
                    child: Container(color: Colors.red), // 두 번째 블루 컨테이너
                    flex: 7,
                  ),
                ],
              ),
            ),
          ])

여기서 body: 다음에 child: 를 붙여서 사용하면 안 되고 body: Column으로 바로 사용해야 한다.

profile
쉽게 설명하지 못하면 이해 못한 것

0개의 댓글