Adjust tablet preview dimensions to better align with the current WindowBreakpoint config.

This commit is contained in:
jeffrey-signal
2026-06-03 22:14:20 -04:00
committed by Cody Henthorne
parent ba3e15ea6d
commit 132eaa5c70
@@ -90,20 +90,20 @@ annotation class FoldableNightPreviews
@FoldableLandscapeNightPreview
annotation class FoldablePreviews
@Preview(name = "tablet portrait (day)", uiMode = Configuration.UI_MODE_NIGHT_NO, device = "spec:width=840dp,height=1280dp,orientation=portrait")
@Preview(name = "tablet portrait (day)", uiMode = Configuration.UI_MODE_NIGHT_NO, device = "spec:width=800dp,height=1280dp,orientation=portrait")
annotation class TabletPortraitDayPreview
@Preview(name = "tablet landscape (day)", uiMode = Configuration.UI_MODE_NIGHT_NO, device = "spec:width=1280dp,height=840dp,orientation=landscape")
@Preview(name = "tablet landscape (day)", uiMode = Configuration.UI_MODE_NIGHT_NO, device = "spec:width=1280dp,height=800dp,orientation=landscape")
annotation class TabletLandscapeDayPreview
@TabletPortraitDayPreview
@TabletLandscapeDayPreview
annotation class TabletDayPreviews
@Preview(name = "tablet portrait (night)", uiMode = Configuration.UI_MODE_NIGHT_YES, device = "spec:width=840dp,height=1280dp,orientation=portrait")
@Preview(name = "tablet portrait (night)", uiMode = Configuration.UI_MODE_NIGHT_YES, device = "spec:width=800dp,height=1280dp,orientation=portrait")
annotation class TabletPortraitNightPreview
@Preview(name = "tablet landscape (night)", uiMode = Configuration.UI_MODE_NIGHT_YES, device = "spec:width=1280dp,height=840dp,orientation=landscape")
@Preview(name = "tablet landscape (night)", uiMode = Configuration.UI_MODE_NIGHT_YES, device = "spec:width=1280dp,height=800dp,orientation=landscape")
annotation class TabletLandscapeNightPreview
@TabletPortraitNightPreview