[Compose] 10. Intrinsic Measure
Compose는 child elements를 한번만 measure할수 있습니다. 그렇지 않으면 runtime에서 exception이 발생합니다. 하지만 childe elements를 측정하기 전에 미리 특정 정보가 필요한 경우 Intrisic measure를 사용하며 이 사용법에 대해서 알아봅니다. 이 글은 Android developer 공식 사이트에서 제공하는 문서를 기반으로 의역, 번역하였습니다. [1] Intrinsic 명령어를 사용하면 child를 measure하기 전에 query해 볼수 있습니다. (min|max)IntrinsicWidth: height가 주어진 상태에서 content를 그리기 위해 필요한 최소/최대의 width 반환 (min|max)IntrinsicHeight: width가 ..