Expanded, Flexible & 상품 레이아웃 Row()안에 박스 2개를 넣었는데 박스의 폭을 50%로 설정하고자 한다면 Flexible() 로 감싼 다음 사용하면 사용할 수 있다. 물론 Column() 도 가능하다. body: Row( children: [ Flexible(child: Container(color: Colors.blue), flex: 3), Flexible(child: Container(color: Colors.green), flex: 7) ] ) Row() 안에서 박스 하나만 꽉채우고 싶다면 Expanded()를 사용하면 된다. 즉 Expanded()를 사용하면 남은 공간을 모두 채우는 역할을 한다. body: Row( children: [ Expanded(child: Conta..