Primary/Compose
Preview 모드인지 확인하는 방법
해스끼
2023. 1. 6. 16:53
CompositionLocal 값 중 ``LocalInspectionMode``를 참조하면 된다.
True if the composition is composed inside a Inspectable component.
사용 예시는 다음과 같다.
val isPreview = LocalInspectionMode.current
Box {
if (isPreview) {
// 이 구문은 Preview에서만 실행됨
}
// 이 구문은 항상 실행됨
}
참고자료