[Android] 004. @Preview(デバイスサイズごと)

最新のNow in Androidを眺めていたら…

@DevicePreviews
@Composable
fun ForYouScreenPopulatedAndLoading(...)

ん?@DevicePreviews???

/**
 * Multipreview annotation that represents various device sizes. Add this annotation to a composable
 * to render various devices.
 */
@Preview(name = "phone", device = "spec:shape=Normal,width=360,height=640,unit=dp,dpi=480")
@Preview(name = "landscape", device = "spec:shape=Normal,width=640,height=360,unit=dp,dpi=480")
@Preview(name = "foldable", device = "spec:shape=Normal,width=673,height=841,unit=dp,dpi=480")
@Preview(name = "tablet", device = "spec:shape=Normal,width=1280,height=800,unit=dp,dpi=480")
annotation class DevicePreviews

たしかにいちいち個別にデバイスごとにPreview実装する必要なかった…
もっとはやく知りたかったorz