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으로 바로 사용해야 한다.