diff --git a/compose-layout/src/main/java/com/google/android/horologist/compose/layout/ScalingLazyColumnDefaults.kt b/compose-layout/src/main/java/com/google/android/horologist/compose/layout/ScalingLazyColumnDefaults.kt index abdf4d1ee0..ac591deb1d 100644 --- a/compose-layout/src/main/java/com/google/android/horologist/compose/layout/ScalingLazyColumnDefaults.kt +++ b/compose-layout/src/main/java/com/google/android/horologist/compose/layout/ScalingLazyColumnDefaults.kt @@ -38,6 +38,7 @@ import androidx.wear.compose.foundation.lazy.ScalingParams import androidx.wear.compose.material.ChipDefaults import com.google.android.horologist.annotations.ExperimentalHorologistApi import com.google.android.horologist.compose.layout.ScalingLazyColumnState.RotaryMode +import kotlin.math.ceil import kotlin.math.sqrt /** @@ -253,15 +254,17 @@ public object ScalingLazyColumnDefaults { val screenWidthDp = configuration.screenWidthDp.dp val screenHeightDp = configuration.screenHeightDp.dp - return if (this != Unspecified) { - topPaddingPct * screenHeightDp + paddingCorrection - } else { - if (configuration.isScreenRound) { - calculateVerticalOffsetForChip(screenWidthDp.value, horizontalPercent) + return ( + if (this != Unspecified) { + topPaddingPct * screenHeightDp + paddingCorrection } else { - 32.dp + if (configuration.isScreenRound) { + calculateVerticalOffsetForChip(screenWidthDp.value, horizontalPercent) + } else { + 32.dp + } } - } + ).ceilPx() } @Composable @@ -269,18 +272,20 @@ public object ScalingLazyColumnDefaults { val configuration = LocalConfiguration.current val screenWidthDp = configuration.screenWidthDp.dp val screenHeightDp = configuration.screenHeightDp.dp - return if (this != Unspecified) { - bottomPaddingPct * screenHeightDp + paddingCorrection - } else { - if (configuration.isScreenRound) { - calculateVerticalOffsetForChip( - screenWidthDp.value, - horizontalPercent, - ) + 10.dp + return ( + if (this != Unspecified) { + bottomPaddingPct * screenHeightDp + paddingCorrection } else { - 0.dp + if (configuration.isScreenRound) { + calculateVerticalOffsetForChip( + screenWidthDp.value, + horizontalPercent, + ) + 10.dp + } else { + 0.dp + } } - } + ).ceilPx() } } @@ -333,3 +338,12 @@ public object ScalingLazyColumnDefaults { @Composable fun Modifier.listTextPadding() = this.padding(horizontal = 0.052f * LocalConfiguration.current.screenWidthDp.dp) } + +@Composable +internal fun Dp.ceilPx(): Dp { + val density = LocalDensity.current + + return with(density) { + ceil(this@ceilPx.toPx()).toDp() + } +} diff --git a/compose-layout/src/main/java/com/google/android/horologist/compose/layout/TransformingLazyColumnDefaults.kt b/compose-layout/src/main/java/com/google/android/horologist/compose/layout/TransformingLazyColumnDefaults.kt index 1ab6fc2a35..02bb17e4d1 100644 --- a/compose-layout/src/main/java/com/google/android/horologist/compose/layout/TransformingLazyColumnDefaults.kt +++ b/compose-layout/src/main/java/com/google/android/horologist/compose/layout/TransformingLazyColumnDefaults.kt @@ -48,11 +48,11 @@ public fun rememberResponsiveColumnPadding( val configuration = LocalConfiguration.current val screenWidthDp = configuration.screenWidthDp.dp - val horizontalPadding = screenWidthDp * horizontalPercent + val horizontalPadding = (screenWidthDp * horizontalPercent).ceilPx() return PaddingValues( - top = first.topPadding(horizontalPercent), - bottom = last.bottomPadding(horizontalPercent), + top = first.topPadding(horizontalPercent).ceilPx(), + bottom = last.bottomPadding(horizontalPercent).ceilPx(), start = horizontalPadding, end = horizontalPadding, ) diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5.png index a544d3fe72..c9bac78d3f 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:020d23991bc5f857703720263efc88846a7d11069684323b5a029ea0885ead8b -size 29406 +oid sha256:1297381857ee37e1c78d58c7f6c2413f9e728324363161d10fb69b9e42c663fb +size 29104 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5_end.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5_end.png index 8442d2ef52..36a2330538 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5_end.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[0]_ticwatch_pro_5_end.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9277298a5e481342f238e511e8428120bfb9705524646e68df2081b58f92fc7 -size 33497 +oid sha256:9f7e89ffd2f7bb0e6052bf7aa344fa4abf6e748dcf60f45e37da4252761473a7 +size 33548 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[1]_galaxy_watch_5.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[1]_galaxy_watch_5.png index c2c03a1b64..41489f69cb 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[1]_galaxy_watch_5.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[1]_galaxy_watch_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe41a4ce5f6b777d70904b278e6a2a85b357c2428408d76248c2fc45d61317db -size 24000 +oid sha256:716d7f8473ce79d2890ea5a5b87868c5130ad867a15c8d84154757d79d081d63 +size 24112 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[2]_galaxy_watch_6.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[2]_galaxy_watch_6.png index b99d4818b7..66422db195 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[2]_galaxy_watch_6.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[2]_galaxy_watch_6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bba7820b950787466f42964b6df4bf5cb2dc45455c6c7c9569e334812b16cfbc -size 28057 +oid sha256:7a0487658d5d220a9a6a379dee9131c65f6e036dde6c5f7f54a4924a0ab2a30c +size 27730 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[6]_galaxy_watch_6_small_font.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[6]_galaxy_watch_6_small_font.png index 5f554b38ef..1e4e967c97 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[6]_galaxy_watch_6_small_font.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_ButtonAndEdgeButton[6]_galaxy_watch_6_small_font.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a18d41fb1af47e98c170e3169b3176717957b9877fa725feb0966b8b58d4085a -size 27079 +oid sha256:059adcf0925ebd2705531888c62d62be5999683cfefdc43df4dbcea7e1cf6185 +size 26987 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5.png index 9feccdc62c..d358a3abc5 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f28a63b31fede3765883c952af26f6fcb6b5a5fc5b1f66e915c7493c4cb2289 -size 32246 +oid sha256:d6c0fb543e6ae2fa6fe946d4d0ef3badcbe2c2302ebb4e11ccbf1b3d6939e460 +size 31956 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5_end.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5_end.png index a408889873..8bfd527c17 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5_end.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[0]_ticwatch_pro_5_end.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f3a7be0c545b5e8b8a76ef36c0de40787ef130e28e737ccb26486ec0831cf57 -size 38054 +oid sha256:a310c749a3ffde967258e8eff322ca4946ac1f57d7e268b04824382fcd3071c6 +size 38070 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[1]_galaxy_watch_5.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[1]_galaxy_watch_5.png index dacac5e2b8..28d647d3bb 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[1]_galaxy_watch_5.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[1]_galaxy_watch_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bf51ebcae2d353863829aa385bc3feeed89b8ca6071650cd815595e502253e3 -size 26775 +oid sha256:1a61b546bb6757001a415fb453022e5d5566fe8b959daa00e0a769cb4b475e7d +size 26885 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[2]_galaxy_watch_6.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[2]_galaxy_watch_6.png index addf635fd0..458f4c73c1 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[2]_galaxy_watch_6.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[2]_galaxy_watch_6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a044162c2914a706107f1c41fabda7277d66a83f05adc1e0d7f77bccf28b5637 -size 30912 +oid sha256:dc05a36400a2da7ab692ecf8362d1692c6ffbe7ab23777706e96e88378d2e661 +size 30588 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[6]_galaxy_watch_6_small_font.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[6]_galaxy_watch_6_small_font.png index a0fc075b12..85e256ea43 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[6]_galaxy_watch_6_small_font.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_IconButtonAndExtraSmallEdgeButton[6]_galaxy_watch_6_small_font.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:509d7807381028ce0d22b5d27836a0b2857c8d7a15cf8a0f26de8998d4c1e745 -size 29974 +oid sha256:e1b1d884a63ee5c8b9620be12fe12d813af1ff7a9212cc522d5d949d9dafb3c3 +size 29869 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5.png index 00ca7c6b96..fe3bf8f84f 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f7f4fd1a3fb2ae7314fc8e3f16030de2f27e90da9ed367b4f10040f869904f6 -size 30527 +oid sha256:b8e5c79958eb1d78f8479c37b4acdc473f7ffcf79270f2295e53f30dc7150ded +size 30494 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5_end.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5_end.png index 030dbd43b1..da72e4be1f 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5_end.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[0]_ticwatch_pro_5_end.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:456da9c38af292310cad7e17f4dab98c9f0e184568f4803f2367b52e80a16ad2 -size 30724 +oid sha256:46a97958b70e91f7260f51124d9eebaaf0322deaa4cbd9acd743fe1b01115b50 +size 30762 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6.png index 2ee0c6a566..3b59c605c0 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e04c5a34fc159999749ff59d256171c8dfc4a859c3b6685297bb0c757ba47ce8 -size 29173 +oid sha256:20e8c45cec4217756e9fd81158c78e39e95b2a41db39305a1e83744282758536 +size 28047 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6_end.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6_end.png index 31bff7bc16..6d68e6cfa4 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6_end.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[2]_galaxy_watch_6_end.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87aeeedf92a8947ad00a083411c0476b6ae4635837d7f1fa109202b1e8fb3ca8 -size 30219 +oid sha256:c392b56329d820e777f98fc4e0ff68e5535cf22aeac28751ab4daa0289a20d4f +size 28785 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font.png index b6d0be4d84..7199a84ea2 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae78fd156596ae96ecc20ae683a7cfb4d827f8e16573f840af9c602b2282f3b7 -size 28431 +oid sha256:51c8ac046cb2ad6f5abf88e05598379758a33ad776a34d1120107dfb86f83d66 +size 27019 diff --git a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font_end.png b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font_end.png index c942a3c20d..6de620ee08 100644 --- a/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font_end.png +++ b/compose-layout/src/test/screenshots/TransformingLazyColumnDefaultsTest_TitleAndCard[6]_galaxy_watch_6_small_font_end.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23203c24f1d90974841025864b9a170bfce9f42dd6c9a5560a41c69a95edd26f -size 28859 +oid sha256:3aa20b6b247dc5459fc933d852860d62d79b7a707d7343755097aa3504b9e731 +size 27626 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[0]_mobvoiticwatchpro5.png index 4827339af7..dab5533d60 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37b06b5faad9d150996354d8b129a563eb68f838f0ef7338b0527d21c4e43818 -size 18666 +oid sha256:b1f1f7deafc87d9d923b4e4264621e54f0a2df8605b1ecfb24585616a63e8f89 +size 18718 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[1]_samsunggalaxywatch5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[1]_samsunggalaxywatch5.png index 0dc6a00ffa..e301f5b491 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[1]_samsunggalaxywatch5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[1]_samsunggalaxywatch5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:feaf79893e556095f7638851d07323e375ed81e86f9dbff6e10a194859216c13 -size 15376 +oid sha256:836ac41961256b307753a945cc67b465fb70d29b85d1d2f0b884b11629e9e0ca +size 15443 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[2]_samsunggalaxywatch6large.png index 40731cdbd9..db34cda1de 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc2d32133a1a37e64eab4293b4e825c21180edb547f3e401e4c9ccd0879361fd -size 18611 +oid sha256:83819e72c114271d2edeceec3ebdeb796359111e1c0f80eb53fd47d4cb76c7bd +size 18565 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[5]_genericlargeround.png index 35d9d7fbea..1041843373 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32abca7c87bd6ecff7f05a60230464edfacf350c8fd75d03151b2664d024e7cc -size 17570 +oid sha256:9457bf1928e9cefe2381fd2f3200363576cf66771d1b0c9681e790d1d3b86ec3 +size 17524 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[7]_largedevicesmallfonts.png index e2c9ccb008..12b2d5f15a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_ScalingLazyColumnDefaultsTest_responsive_chips[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:939e95b3a105334410de070518189fee15151970b5a80665838b6d86630a0635 -size 18352 +oid sha256:62b693a1d542eb18f43ae57b6832360d5c7add68d56fc04f5a4d2149b59e92ec +size 18408 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[0]_mobvoiticwatchpro5.png index ce83efbf37..f22106147a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2323991c61059258c3c06aa2ba31e362d03c906ac0e5ec424319e1fd5b3a9a16 -size 31532 +oid sha256:311e78a43fa168179fce6c54120e087e48e6611ff731e7780c8c7b9c729f6fcc +size 31522 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[1]_samsunggalaxywatch5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[1]_samsunggalaxywatch5.png index cc30130f2c..665beb892a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[1]_samsunggalaxywatch5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[1]_samsunggalaxywatch5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63304a419bb906cc88ff29d20c67931d640d14442cfa80d5bf39def9ec248d62 -size 26906 +oid sha256:946a6858a15f435fc4fb80ec2115a4873aed85bb60d73148c98c1f4c7c7e610a +size 26695 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[2]_samsunggalaxywatch6large.png index 6c7f43c5db..722daa493c 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99efdf3c27c2fd05b4cfae31a389ba18f9d520cd5dbb54af1b3dc58d6f61a04d -size 31044 +oid sha256:0d9338268f4a82573e78adb0df10b7329ceac5fe844d8ebb59ded4a64ff0f5d0 +size 31011 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[5]_genericlargeround.png index 0b47a07ba9..6f5b176cd4 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:440cf3c6eff52566a6f13f7c20a41fa6bf1e4c8837c427e7b822a103164a7f37 -size 30668 +oid sha256:431f2868b025d549c8ea2bd64e4e62426581a017af06e3189ff46e34b066e329 +size 30416 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[7]_largedevicesmallfonts.png index accba2a7ef..6d6958b964 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListTest_screenshot[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9381b438a0e570884999b2183eaad6b3888ac9bd88dd79c2825585d9612731b4 -size 32853 +oid sha256:661cedcf7ff64e177c15a9e99de93e922ea5baae69a622245fbf47f9d877b080 +size 32840