diff --git a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[4].png b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[4].png index bd83e04c6d..1cba23a555 100644 --- a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[4].png +++ b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[4].png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:030266f799ff5bf8f9a1b7c8a9866dbf4d882e9585b84d06a201c158ad9cea42 -size 17262 +oid sha256:a1570cc4f54e5b524444a0b3e59ae0d411e72f2aca04c5a73a7c7fc2f78c836b +size 17260 diff --git a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[5].png b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[5].png index 47c65013b3..5bee68be82 100644 --- a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[5].png +++ b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[5].png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90a589b93ed9cec9f75d27d779402c909484288d13df33c2f9c45cb6bb0079fb -size 25933 +oid sha256:a5533a473177af4c79a1fd09df56bf38e0e7f40364480b8d198a3819cb02c5de +size 25628 diff --git a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[6].png b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[6].png index 23cdacd75c..658ee4713f 100644 --- a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[6].png +++ b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[6].png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a41a9228e83a4e4d896f467b8aa784b3f0f4e15d579a9dce1f90a90aaa71eda1 -size 20511 +oid sha256:330bb4d785370e80474a475eac531a2b692b1c1a44fb824d56b2ccabb3e1cf7b +size 20513 diff --git a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[7].png b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[7].png index eb2b0066d6..b4cd82cec1 100644 --- a/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[7].png +++ b/composables/src/test/snapshots/images/com.google.android.horologist.composables_SectionedListHeaderFooterTest_test[7].png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:996f63c5b909fecf09a0a639ff6c7a0580caa0fd34da4d81f538c83849d41c1f -size 19680 +oid sha256:5580bce601b3b11ea9b1be1af69b64e9821ccb7c6d8c169d36c6aa602b992255 +size 19673 diff --git a/compose-layout/api/current.api b/compose-layout/api/current.api index dc99930379..664c94c5a5 100644 --- a/compose-layout/api/current.api +++ b/compose-layout/api/current.api @@ -2,7 +2,7 @@ package com.google.android.horologist.compose.ambient { public final class AmbientAwareKt { - method @androidx.compose.runtime.Composable public static void AmbientAware(kotlin.jvm.functions.Function1 content); + method @androidx.compose.runtime.Composable public static void AmbientAware(optional androidx.lifecycle.Lifecycle lifecycle, kotlin.jvm.functions.Function1 content); method public static androidx.compose.runtime.ProvidableCompositionLocal getLocalAmbientState(); property public static final androidx.compose.runtime.ProvidableCompositionLocal LocalAmbientState; } diff --git a/compose-layout/src/main/java/com/google/android/horologist/compose/ambient/AmbientAware.kt b/compose-layout/src/main/java/com/google/android/horologist/compose/ambient/AmbientAware.kt index 05ce84bfcd..d5bacc0997 100644 --- a/compose-layout/src/main/java/com/google/android/horologist/compose/ambient/AmbientAware.kt +++ b/compose-layout/src/main/java/com/google/android/horologist/compose/ambient/AmbientAware.kt @@ -42,17 +42,18 @@ import androidx.wear.ambient.AmbientLifecycleObserver * * It should be used within each individual screen inside nav routes. * + * @param lifecycle The [Lifecycle] of the activity or current owner such as NavBackStackEntry. * @param content Lambda that will be used for building the UI, which is passed the current ambient * state. */ @Composable fun AmbientAware( + lifecycle: Lifecycle = LocalLifecycleOwner.current.lifecycle, content: @Composable (AmbientState) -> Unit, ) { // Using AmbientAware correctly relies on there being an Activity context. If there isn't, then // gracefully allow the composition of [block], but no ambient-mode functionality is enabled. val activity = LocalContext.current.findActivityOrNull() - val lifecycle = LocalLifecycleOwner.current.lifecycle val ambientState = rememberAmbientState(activity, lifecycle) 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 8599c77071..7dc43d1ae0 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 /** @@ -308,7 +309,7 @@ public object ScalingLazyColumnDefaults { return { val height = screenHeightDp.dp - val horizontalPadding = screenWidthDp.dp * horizontalPercent + val horizontalPadding = (screenWidthDp.dp * horizontalPercent).ceilPx() val topPadding = if (first != ItemType.Unspecified) { first.topPaddingDp * height + first.paddingCorrection @@ -318,7 +319,7 @@ public object ScalingLazyColumnDefaults { } else { 32.dp } - } + }.ceilPx() val bottomPadding = if (last != ItemType.Unspecified) { last.bottomPaddingDp * height + first.paddingCorrection @@ -331,7 +332,7 @@ public object ScalingLazyColumnDefaults { } else { 0.dp } - } + }.ceilPx() PaddingValues( top = topPadding, @@ -345,3 +346,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/sample/src/test/audit/Cards_backgroundimage_device204.png b/sample/src/test/audit/Cards_backgroundimage_device204.png index 8037134665..7c2349123f 100644 Binary files a/sample/src/test/audit/Cards_backgroundimage_device204.png and b/sample/src/test/audit/Cards_backgroundimage_device204.png differ diff --git a/sample/src/test/audit/Cards_backgroundimage_device240.png b/sample/src/test/audit/Cards_backgroundimage_device240.png index 093941150e..5ab92fc5a6 100644 Binary files a/sample/src/test/audit/Cards_backgroundimage_device240.png and b/sample/src/test/audit/Cards_backgroundimage_device240.png differ diff --git a/sample/src/test/audit/Cards_backgroundimage_pixel_watch.png b/sample/src/test/audit/Cards_backgroundimage_pixel_watch.png index 438b3b60ad..394f8c6bf0 100644 Binary files a/sample/src/test/audit/Cards_backgroundimage_pixel_watch.png and b/sample/src/test/audit/Cards_backgroundimage_pixel_watch.png differ diff --git a/sample/src/test/audit/Cards_backgroundimage_pixel_watch_large_font.png b/sample/src/test/audit/Cards_backgroundimage_pixel_watch_large_font.png index a40cf78ba6..16f65e7194 100644 Binary files a/sample/src/test/audit/Cards_backgroundimage_pixel_watch_large_font.png and b/sample/src/test/audit/Cards_backgroundimage_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/Lists_nobottombutton_device204.png b/sample/src/test/audit/Lists_nobottombutton_device204.png index f7864866f6..1267cd13a7 100644 Binary files a/sample/src/test/audit/Lists_nobottombutton_device204.png and b/sample/src/test/audit/Lists_nobottombutton_device204.png differ diff --git a/sample/src/test/audit/Lists_nobottombutton_device228.png b/sample/src/test/audit/Lists_nobottombutton_device228.png index b6d9665991..d4a230233f 100644 Binary files a/sample/src/test/audit/Lists_nobottombutton_device228.png and b/sample/src/test/audit/Lists_nobottombutton_device228.png differ diff --git a/sample/src/test/audit/Lists_nobottombutton_device240.png b/sample/src/test/audit/Lists_nobottombutton_device240.png index c41bee9338..b60cccdd62 100644 Binary files a/sample/src/test/audit/Lists_nobottombutton_device240.png and b/sample/src/test/audit/Lists_nobottombutton_device240.png differ diff --git a/sample/src/test/audit/Lists_nobottombutton_pixel_watch.png b/sample/src/test/audit/Lists_nobottombutton_pixel_watch.png index d41cd4aeb2..857bfd3deb 100644 Binary files a/sample/src/test/audit/Lists_nobottombutton_pixel_watch.png and b/sample/src/test/audit/Lists_nobottombutton_pixel_watch.png differ diff --git a/sample/src/test/audit/Lists_nobottombutton_pixel_watch_large_font.png b/sample/src/test/audit/Lists_nobottombutton_pixel_watch_large_font.png index 60f7ecbaf9..6359ed20c9 100644 Binary files a/sample/src/test/audit/Lists_nobottombutton_pixel_watch_large_font.png and b/sample/src/test/audit/Lists_nobottombutton_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/Lists_onebottombutton_device204.png b/sample/src/test/audit/Lists_onebottombutton_device204.png index b4998707a9..7f337c6244 100644 Binary files a/sample/src/test/audit/Lists_onebottombutton_device204.png and b/sample/src/test/audit/Lists_onebottombutton_device204.png differ diff --git a/sample/src/test/audit/Lists_onebottombutton_galaxy_watch_6_small_font.png b/sample/src/test/audit/Lists_onebottombutton_galaxy_watch_6_small_font.png index 411ee3a93d..75f983b729 100644 Binary files a/sample/src/test/audit/Lists_onebottombutton_galaxy_watch_6_small_font.png and b/sample/src/test/audit/Lists_onebottombutton_galaxy_watch_6_small_font.png differ diff --git a/sample/src/test/audit/Lists_onebottomchip_device204.png b/sample/src/test/audit/Lists_onebottomchip_device204.png index 061ac9dadc..ed80a75dfe 100644 Binary files a/sample/src/test/audit/Lists_onebottomchip_device204.png and b/sample/src/test/audit/Lists_onebottomchip_device204.png differ diff --git a/sample/src/test/audit/Lists_onebottomchip_device228.png b/sample/src/test/audit/Lists_onebottomchip_device228.png index 684ea51eab..9052b97ef3 100644 Binary files a/sample/src/test/audit/Lists_onebottomchip_device228.png and b/sample/src/test/audit/Lists_onebottomchip_device228.png differ diff --git a/sample/src/test/audit/Lists_onebottomchip_device240.png b/sample/src/test/audit/Lists_onebottomchip_device240.png index 30fae76253..a7d60bbba8 100644 Binary files a/sample/src/test/audit/Lists_onebottomchip_device240.png and b/sample/src/test/audit/Lists_onebottomchip_device240.png differ diff --git a/sample/src/test/audit/Lists_onebottomchip_pixel_watch.png b/sample/src/test/audit/Lists_onebottomchip_pixel_watch.png index 803fc9be48..18147e8f64 100644 Binary files a/sample/src/test/audit/Lists_onebottomchip_pixel_watch.png and b/sample/src/test/audit/Lists_onebottomchip_pixel_watch.png differ diff --git a/sample/src/test/audit/Lists_onebottomchip_pixel_watch_large_font.png b/sample/src/test/audit/Lists_onebottomchip_pixel_watch_large_font.png index 248c23ac9b..c6c4ad338c 100644 Binary files a/sample/src/test/audit/Lists_onebottomchip_pixel_watch_large_font.png and b/sample/src/test/audit/Lists_onebottomchip_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/Lists_twobottomround_device204.png b/sample/src/test/audit/Lists_twobottomround_device204.png index dd25aef1ec..017feff699 100644 Binary files a/sample/src/test/audit/Lists_twobottomround_device204.png and b/sample/src/test/audit/Lists_twobottomround_device204.png differ diff --git a/sample/src/test/audit/Lists_twobottomround_galaxy_watch_6_small_font.png b/sample/src/test/audit/Lists_twobottomround_galaxy_watch_6_small_font.png index 075b4859d2..1ffa0ef44a 100644 Binary files a/sample/src/test/audit/Lists_twobottomround_galaxy_watch_6_small_font.png and b/sample/src/test/audit/Lists_twobottomround_galaxy_watch_6_small_font.png differ diff --git a/sample/src/test/audit/MainMenu_bottom_device228.png b/sample/src/test/audit/MainMenu_bottom_device228.png index 37225d3a1c..92351b2d36 100644 Binary files a/sample/src/test/audit/MainMenu_bottom_device228.png and b/sample/src/test/audit/MainMenu_bottom_device228.png differ diff --git a/sample/src/test/audit/MainMenu_bottom_device240.png b/sample/src/test/audit/MainMenu_bottom_device240.png index 8bf6a2bbf4..a92af225fa 100644 Binary files a/sample/src/test/audit/MainMenu_bottom_device240.png and b/sample/src/test/audit/MainMenu_bottom_device240.png differ diff --git a/sample/src/test/audit/MainMenu_bottom_pixel_watch.png b/sample/src/test/audit/MainMenu_bottom_pixel_watch.png index abbb11cf03..4ed04b5fe6 100644 Binary files a/sample/src/test/audit/MainMenu_bottom_pixel_watch.png and b/sample/src/test/audit/MainMenu_bottom_pixel_watch.png differ diff --git a/sample/src/test/audit/MainMenu_bottom_pixel_watch_large_font.png b/sample/src/test/audit/MainMenu_bottom_pixel_watch_large_font.png index bd96eb4355..0bc1280ecb 100644 Binary files a/sample/src/test/audit/MainMenu_bottom_pixel_watch_large_font.png and b/sample/src/test/audit/MainMenu_bottom_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/MainMenu_top_device204.png b/sample/src/test/audit/MainMenu_top_device204.png index c6647e7f37..67938df9e1 100644 Binary files a/sample/src/test/audit/MainMenu_top_device204.png and b/sample/src/test/audit/MainMenu_top_device204.png differ diff --git a/sample/src/test/audit/MainMenu_top_galaxy_watch_6_small_font.png b/sample/src/test/audit/MainMenu_top_galaxy_watch_6_small_font.png index 1f0a7e0fb0..a910a24531 100644 Binary files a/sample/src/test/audit/MainMenu_top_galaxy_watch_6_small_font.png and b/sample/src/test/audit/MainMenu_top_galaxy_watch_6_small_font.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomlong_device204.png b/sample/src/test/audit/PositionIndicator_bottomlong_device204.png index facdd75b5e..1f348fa5d4 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomlong_device204.png and b/sample/src/test/audit/PositionIndicator_bottomlong_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomlong_device228.png b/sample/src/test/audit/PositionIndicator_bottomlong_device228.png index 77b4bcc0f6..2804e6b364 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomlong_device228.png and b/sample/src/test/audit/PositionIndicator_bottomlong_device228.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomlong_device240.png b/sample/src/test/audit/PositionIndicator_bottomlong_device240.png index c7a79bf761..6658d5766a 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomlong_device240.png and b/sample/src/test/audit/PositionIndicator_bottomlong_device240.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch.png b/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch.png index eb10a50153..c35883ddf3 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch.png and b/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch_large_font.png b/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch_large_font.png index eb10a50153..c35883ddf3 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch_large_font.png and b/sample/src/test/audit/PositionIndicator_bottomlong_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomshort_device204.png b/sample/src/test/audit/PositionIndicator_bottomshort_device204.png index a6bf2d709d..cb4665623a 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomshort_device204.png and b/sample/src/test/audit/PositionIndicator_bottomshort_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomshort_device228.png b/sample/src/test/audit/PositionIndicator_bottomshort_device228.png index 9f6c699654..f187326c5b 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomshort_device228.png and b/sample/src/test/audit/PositionIndicator_bottomshort_device228.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomshort_device240.png b/sample/src/test/audit/PositionIndicator_bottomshort_device240.png index 39eff89b2e..9c1f1ea29e 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomshort_device240.png and b/sample/src/test/audit/PositionIndicator_bottomshort_device240.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch.png b/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch.png index 3d9995a761..4fba3af588 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch.png and b/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch.png differ diff --git a/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch_large_font.png b/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch_large_font.png index 3d9995a761..4fba3af588 100644 Binary files a/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch_large_font.png and b/sample/src/test/audit/PositionIndicator_bottomshort_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/PositionIndicator_middlelong_device204.png b/sample/src/test/audit/PositionIndicator_middlelong_device204.png index d0f9c892be..bd519a8f0d 100644 Binary files a/sample/src/test/audit/PositionIndicator_middlelong_device204.png and b/sample/src/test/audit/PositionIndicator_middlelong_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_middleshort_device204.png b/sample/src/test/audit/PositionIndicator_middleshort_device204.png index 89d33e68b1..62e100a983 100644 Binary files a/sample/src/test/audit/PositionIndicator_middleshort_device204.png and b/sample/src/test/audit/PositionIndicator_middleshort_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_toplong_device204.png b/sample/src/test/audit/PositionIndicator_toplong_device204.png index 5bb19c0988..b67c432d51 100644 Binary files a/sample/src/test/audit/PositionIndicator_toplong_device204.png and b/sample/src/test/audit/PositionIndicator_toplong_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_toplong_device240.png b/sample/src/test/audit/PositionIndicator_toplong_device240.png index 3e6ee7eb16..6554a8799e 100644 Binary files a/sample/src/test/audit/PositionIndicator_toplong_device240.png and b/sample/src/test/audit/PositionIndicator_toplong_device240.png differ diff --git a/sample/src/test/audit/PositionIndicator_toplong_pixel_watch.png b/sample/src/test/audit/PositionIndicator_toplong_pixel_watch.png index 12e9e74765..391b403db4 100644 Binary files a/sample/src/test/audit/PositionIndicator_toplong_pixel_watch.png and b/sample/src/test/audit/PositionIndicator_toplong_pixel_watch.png differ diff --git a/sample/src/test/audit/PositionIndicator_toplong_pixel_watch_large_font.png b/sample/src/test/audit/PositionIndicator_toplong_pixel_watch_large_font.png index b5a07e455a..02890e1249 100644 Binary files a/sample/src/test/audit/PositionIndicator_toplong_pixel_watch_large_font.png and b/sample/src/test/audit/PositionIndicator_toplong_pixel_watch_large_font.png differ diff --git a/sample/src/test/audit/PositionIndicator_topshort_device204.png b/sample/src/test/audit/PositionIndicator_topshort_device204.png index 07ff5eb40a..10490cb2ba 100644 Binary files a/sample/src/test/audit/PositionIndicator_topshort_device204.png and b/sample/src/test/audit/PositionIndicator_topshort_device204.png differ diff --git a/sample/src/test/audit/PositionIndicator_topshort_device240.png b/sample/src/test/audit/PositionIndicator_topshort_device240.png index 2d67726725..1704a7fb96 100644 Binary files a/sample/src/test/audit/PositionIndicator_topshort_device240.png and b/sample/src/test/audit/PositionIndicator_topshort_device240.png differ diff --git a/sample/src/test/audit/PositionIndicator_topshort_pixel_watch.png b/sample/src/test/audit/PositionIndicator_topshort_pixel_watch.png index a5fa5d15f6..982492de5c 100644 Binary files a/sample/src/test/audit/PositionIndicator_topshort_pixel_watch.png and b/sample/src/test/audit/PositionIndicator_topshort_pixel_watch.png differ diff --git a/sample/src/test/audit/PositionIndicator_topshort_pixel_watch_large_font.png b/sample/src/test/audit/PositionIndicator_topshort_pixel_watch_large_font.png index 343b92c987..80f5bd9a07 100644 Binary files a/sample/src/test/audit/PositionIndicator_topshort_pixel_watch_large_font.png and b/sample/src/test/audit/PositionIndicator_topshort_pixel_watch_large_font.png differ diff --git a/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6.png b/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6.png index 69c4255155..83ef6f45b2 100644 --- a/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6.png +++ b/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f58f9c3ca15aeca4a10c279e6b480b9747d9f43bd298a93445971e1686238de3 -size 30510 +oid sha256:58ec54e78db5305a3ba733629f86f1f8407e934888f5f88fe81d3dc4c3af9283 +size 30558 diff --git a/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6_small_font.png b/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6_small_font.png index 4406ebb076..38f91b319f 100644 --- a/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6_small_font.png +++ b/sample/src/test/screenshots/SelectAccountScreenTest_galaxy_watch_6_small_font.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f3825905cedfad9ba8559f4d8abb654e6297137f801aca62280e0c808a98a3f -size 29062 +oid sha256:b39e9db3a7e540d8ab57f19883583b1eb77918204188de2fc53d9526b2b0a87d +size 29206 diff --git a/sample/src/test/screenshots/SelectAccountScreenTest_ticwatch_pro_5.png b/sample/src/test/screenshots/SelectAccountScreenTest_ticwatch_pro_5.png index 518576e599..52466e3800 100644 --- a/sample/src/test/screenshots/SelectAccountScreenTest_ticwatch_pro_5.png +++ b/sample/src/test/screenshots/SelectAccountScreenTest_ticwatch_pro_5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a0c086ee093208b5031ec96ae05d8642597c408f0d9b59baa4b30086f7d9888 -size 30607 +oid sha256:6e0b756101d9d74275a73f5c99243935c995785b857ee00840040551a1799748 +size 30604 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[0]_mobvoiticwatchpro5.png index 6189dba2d1..e4e6365479 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b661551d5f92c07c148e7a3de3d2c72fc80dc7f31985aeaef54dc6a94b260d10 -size 30652 +oid sha256:9b910d7a8655c06d2795a9959b12b62f4d456b483829c972074705f081aeb583 +size 30776 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[7]_largedevicesmallfonts.png index 79dbfe7637..dcca725347 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_MediaPlayerLibraryTest_screenshot[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a56d00493fb8532ef63f1c51316fc8031ebd8e662e84d8820c659c38dfb30add -size 29658 +oid sha256:63620c1135a160d041098069283816bfb04aa0145b927729796eaca97c7d18f1 +size 29667 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[0]_mobvoiticwatchpro5.png index afed033db7..8b22ca154f 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aad89039e7d102d02edd7ce2f6fc9ed4308390efe2cfe3ddcc426b2330768b8c -size 29174 +oid sha256:abc40f61345ee203be6ffb80e849d52496036eb80602d4cfa6ddc478b1e73440 +size 29298 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[7]_largedevicesmallfonts.png index b2e2bba683..f4673d1cc4 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.screensizes_SectionedListDefaultTest_screenshot[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f881f8221878c194c193590cd456b4bb6b5f3bc0f995b69a29af76733996d609 -size 32653 +oid sha256:8c98dc9ea7304741789d75347c34b585f7d3de9bda43bc21e87a0fc2a868a929 +size 32647 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[0]_mobvoiticwatchpro5.png index ee8c135ecb..e9ba7d4806 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa34bbe624ce4ec493022335973e4e7530d245ee27bfb31e5aee09296b0b43c6 -size 64973 +oid sha256:0b799953db04191e1f2ed5e4521914c933dc439f74bad0cc6a5dc2f339512504 +size 65218 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[2]_samsunggalaxywatch6large.png index 39862193c7..a9c5476305 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da0d07c3d507311c0f7812753febf6a4c66cb30bb537c0ea322d27074b1dbb4d -size 68874 +oid sha256:d9eb5d365225eb8eef4d0ee2578edd9af3a100d4a30252e2c37cae56dd003d91 +size 67648 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[3]_googlepixelwatch.png index ee8f2a762c..9feac33110 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a51d43ef209fff75045bfcb4754c90f72c61593965cc1d0f3044c7c2b7f16135 -size 51166 +oid sha256:e4b6e1beef33b1057e33ac5b85e67212876da43780894de5ab969468edd2e79a +size 52017 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[4]_genericsmallround.png index ee8f2a762c..9feac33110 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a51d43ef209fff75045bfcb4754c90f72c61593965cc1d0f3044c7c2b7f16135 -size 51166 +oid sha256:e4b6e1beef33b1057e33ac5b85e67212876da43780894de5ab969468edd2e79a +size 52017 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[5]_genericlargeround.png index 3ae87dbe95..2bbc1b7db5 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee6b65d65d2865809d4ba57c290a9eb26b7f8f5d85196c829ed43f11553c22a5 -size 63715 +oid sha256:6aa66305abe89ddd52b079085e9c61519dfefc5429993109b237f231e42b3b42 +size 63090 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[6]_smalldevicebigfonts.png index b11f1daa09..5069238ca3 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d39cac69b329984004d7f039d152d8e9eef36ed23dde04715b90125326a12408 -size 54093 +oid sha256:017e41ef74e80ca2310cdcb2478fac39732c810394da1b632a07d47ecb678d44 +size 55076 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[7]_largedevicesmallfonts.png index d5024e12e0..1d034dd657 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideCards[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7eb4434a647730e5e019e19391875e55224969360b5258a685c569bb51a4e75c -size 66076 +oid sha256:aedcbbcc6b569e107679bb6ea3127e379671b287dc304cf5001e07f1e430c8d7 +size 63330 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[0]_mobvoiticwatchpro5.png index 89b9591531..a585197619 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5073f870f7b2332ee974d3f171b55bc924b50310434daf76d848f9c81f1b7752 +oid sha256:16b2ed6214d877f993af09d9e23df766b534d1f0bcc59e226b1080c1bbd99334 size 27027 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[2]_samsunggalaxywatch6large.png index b9daae40c7..c892d03de0 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36a325482e112fcbd9ac02c231e8dcc18f93106330ca441697990fa1a9fbd72f -size 28024 +oid sha256:a405b1b2c6fc495f90ffd596a4369673ea678b4a36db4a79b05b4dd7a2217f54 +size 28194 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[3]_googlepixelwatch.png index 139c37e9c6..77413d7e2e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b2cdcd961877b6d4601d4ed1b81a6344b5b168cf209942fd0181e534ad59ae5 -size 24090 +oid sha256:72516418c58bc146ee14b02f92c2ee378d8563b4395babd4b1fba3a4ed313793 +size 23981 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[4]_genericsmallround.png index 139c37e9c6..77413d7e2e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b2cdcd961877b6d4601d4ed1b81a6344b5b168cf209942fd0181e534ad59ae5 -size 24090 +oid sha256:72516418c58bc146ee14b02f92c2ee378d8563b4395babd4b1fba3a4ed313793 +size 23981 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[5]_genericlargeround.png index 090fbfc0cf..12cb412826 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f96b673a30edf1c231b8e3a7d2f61d6ad8dd02fe873680fe09af6119040ccdfa -size 26671 +oid sha256:fd6cbc79fab388af298515cbd85015d2407ac64f6a1103076dbcd25275eec922 +size 26585 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[6]_smalldevicebigfonts.png index d2e587692e..a73dfc110a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f62e606f7a176487c8d329982cd666cb728d06f1f5cb35773e0a452a71f023fe -size 24247 +oid sha256:0926eabe613bc5ab2f48bb367131fa06695414eedf6db748444ef64ca2fed94e +size 24143 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[7]_largedevicesmallfonts.png index 9cfeee8644..d62300e9fd 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideChips[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1121fa0085b52dfb52e925671b3af70df8db88595b2b3b6baecb10460a9b486c -size 26195 +oid sha256:f6e729738072132a7bcc37a1be22cae70efffde9f60cc95923d8940b3c871d00 +size 26206 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[0]_mobvoiticwatchpro5.png index 59980c98eb..28117a9d68 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fc7efca6d6ad08991084587b44fec2d97c96ecd9630e3401b0ff7cea1b66ec9 -size 32804 +oid sha256:6741f9bd3845694ff1f84f9cdf2099b27bb282ec27acf463c5a89a185264c112 +size 32795 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[2]_samsunggalaxywatch6large.png index 1cfd01088b..148ae26b76 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42905ffe6a362fd29fc4259210dab69297de06a94e7e153614e8c3467a71c314 -size 34457 +oid sha256:484ebff1d81d0714d9074c5e40dca14ff2866dce8d5eda4a0cf82422817909f8 +size 34429 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[3]_googlepixelwatch.png index f7a40c2f26..fbcddcf877 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27ce28228cb27a8f85218a0ba552cb6072eec9a5a6fde94eafaf79453eb59663 -size 28983 +oid sha256:2a45a33185d10f55b889bc291b3e31dbc766fcf7b7b1961c296d61506981c5ca +size 29011 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[4]_genericsmallround.png index f7a40c2f26..fbcddcf877 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27ce28228cb27a8f85218a0ba552cb6072eec9a5a6fde94eafaf79453eb59663 -size 28983 +oid sha256:2a45a33185d10f55b889bc291b3e31dbc766fcf7b7b1961c296d61506981c5ca +size 29011 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[5]_genericlargeround.png index df7640b056..6f1c819a5c 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4aa1bc9fae1bdb1404fcc05621031522e43d0be76ef44e4d440b8da86ef4183a -size 32411 +oid sha256:008b9528df7ed5a5dff96ba7cc94249efbc4f603a3482c45ecc5c247a12ad933 +size 32401 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[6]_smalldevicebigfonts.png index 160d1b1938..a571baba4d 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8573b6fce9bed92a4c4e58c659202fc5eeff165b725c796166b4898fa1dabb0 -size 30343 +oid sha256:6b8002cae8b37effdd3525150520542d352a0d68d81f8e67421ab10f02dedc0d +size 30250 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[7]_largedevicesmallfonts.png index 423b3af50f..684b6c7fe5 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideMixed[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ced2c3d5fc340640418f27128fe07048385936d0eca4f1c5a94851b548e8d30 -size 32165 +oid sha256:5ae3468e3538cb3f86f74cb1bc3fb85d2674cc11fb01a6cc4451cc29a8983a45 +size 32120 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[0]_mobvoiticwatchpro5.png index 3b28d86597..b6cfeabac3 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:149acb923dfd82018bdc1bbd371c49e60846e40cb3b76daef093bfa763f2be28 -size 39245 +oid sha256:6afa855bbeec75e40a1c7e3648e62960d329dc5e7f249230eef573f9e7e8e2e8 +size 39242 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[7]_largedevicesmallfonts.png index d841350957..a67737d8eb 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_sideText[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04a0b2f8ef6af67bc7ed506c80f2950471d043822bf0a575c84ac49c19ef82e4 -size 40167 +oid sha256:90373467b6ef45716cc704372aeec852e820a724767ddaca3409214a5030d370 +size 40011 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[0]_mobvoiticwatchpro5.png index 065622a002..5f53185080 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6784212106d5c49ea33c772df7fed59d53ab08610142e6a2797cd8b8bc9f7b67 -size 26729 +oid sha256:f86e7c7fb24f8a8b1445a343b46ee676718434b50c8550d5728f0a6efed1f9a8 +size 26648 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[1]_samsunggalaxywatch5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[1]_samsunggalaxywatch5.png index 19fa3823e5..1e80027ff5 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[1]_samsunggalaxywatch5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[1]_samsunggalaxywatch5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ce0d9e7cf2c6d79af3f0c1dc5b5f594c1804397d1df80e85f80afc41f6b491e -size 22632 +oid sha256:bbd3b03c5fbcad4e7e0cfd41e1e64c0f9c483b1acf45c25fbd2e3c2bcd515b89 +size 22477 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[7]_largedevicesmallfonts.png index e92de297b8..ae2ebb1e30 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Button[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17f97cc85d9710798dd05fd32689f9093fa71fca811a5fc0fa05f2193b589383 -size 25797 +oid sha256:22fc6a78c125609ddd3c10038dae740b45d98c857219a575c22c7b7b6842f9a3 +size 25880 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[0]_mobvoiticwatchpro5.png index a1ebb4d614..83258aafbb 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6f1cb1e584535b7c5e245bdffe50d6a7ff3715a290a0c1fff40127111497699 -size 26307 +oid sha256:ddb11809ec743ffdcf2a3746df8e4c59ffbd3f9098129625411d0fa1c04bc47d +size 26126 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[1]_samsunggalaxywatch5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[1]_samsunggalaxywatch5.png index d8970da0ab..40c51924fc 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[1]_samsunggalaxywatch5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[1]_samsunggalaxywatch5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16dbd0e9e758280dcdd4d61f0c0b2a4a4920653fccc0bdc66975f6de89980fec -size 21691 +oid sha256:94634757636d403cc2fefa6e80eb5ea3477315aef9ac80747c178ba7bc1dedc1 +size 21526 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[7]_largedevicesmallfonts.png index bb7fcade76..5b4b24cd06 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1CompactChip[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cdd85bc56bdc99ffd1a2b8c7e8377c8070eca90473505db89b81b0ee41bd7a7 -size 25506 +oid sha256:8ec41e249dbf02d0b0fca3b3d10e9d354fdb4d3b9a1a93b7747b364ad722ce0a +size 25305 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[0]_mobvoiticwatchpro5.png index 03762115dc..a6c048418a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee21ef199c301f2b9ac7304294accfdcdf36199d7ad42825aad3e7312cfa0d1d -size 27276 +oid sha256:ac5bdefe7d8f2d29abe841c0379963867232939ffff6e10d61e61cd954254eae +size 27285 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[7]_largedevicesmallfonts.png index c2bfab8a40..3343e54226 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title1Line[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6330a8f0bca77d52a50b8feeabd4d2e986ed60e5a5eacd883fd627b48c25272f -size 28032 +oid sha256:31934a78901385f70a9b101a9a302e7cc27a5e9cd30678b42c13d33743a9890c +size 28051 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[0]_mobvoiticwatchpro5.png index 54046ef345..73e8634948 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bccdcd17aac64395cfa01fe610ae39c1dff412e8d048edeb426e39b99642bf58 -size 25082 +oid sha256:6280d6bc3b534aa93c74c2ff68a58b5ec7b496d647d725040ea0d13e3c5972cb +size 25114 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[2]_samsunggalaxywatch6large.png index 2419e7c0b1..e14780055e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e583293f679c374bf26476a16ec94d92da49364cf6041cdcd28d6c43fff6d630 -size 25916 +oid sha256:2ff0468b20042d5149572f478d5270b9ba480a24511384ae899364a3dfbcd6a8 +size 26222 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[3]_googlepixelwatch.png index 4a4844595e..e508c9da37 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f00ec22aba1c74910e2b3864cbe2ca2c55e3372067051826146ac898789c97e4 -size 21439 +oid sha256:5009a02b59c146db4ba6bb9dd1e777a8e5b37af1e76e3b1b1b93e608a1c3a388 +size 21330 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[4]_genericsmallround.png index 4a4844595e..e508c9da37 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f00ec22aba1c74910e2b3864cbe2ca2c55e3372067051826146ac898789c97e4 -size 21439 +oid sha256:5009a02b59c146db4ba6bb9dd1e777a8e5b37af1e76e3b1b1b93e608a1c3a388 +size 21330 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[5]_genericlargeround.png index 16d58b25f6..ecec1052b4 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b75f3c7a33fe0a6cf456cd371a7c41043d67fab73444ebd6176e97390ace675b -size 24698 +oid sha256:3482dc40dab0d8dc45a154a87ac29caa9ce06a6df8f927798c2bb8f1dffc851a +size 23934 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[6]_smalldevicebigfonts.png index 6955ab76ce..050fbee944 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5e83fc2adc58aa1c07417038c505382a5628b524c011704416bd052177a196d -size 21777 +oid sha256:fdddf089dc04d415fa92608aa682412b1a41bfacb5a7f969f20c66f9e15d5ace +size 21541 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[7]_largedevicesmallfonts.png index 70d161bed0..78b631ac3a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Button[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f764ba72d2cd555d00bf81727a18af42f52834b1514448bb1d9a74e09f70d65d -size 24404 +oid sha256:e02f62d69e123a2f4ac15164aa2edbbce82773c76ba8675f3541feae9107ca10 +size 24368 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[0]_mobvoiticwatchpro5.png index 75c65e5a10..3531ccf466 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b0e564425d2d379528fe819c51390cf3a776fcaff825f50a5a35e6b3783cc7e -size 24999 +oid sha256:da3752e69c4b13c4f9c6e242ebae5cc347a13104e83e0925586199f10a064f3b +size 24957 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[7]_largedevicesmallfonts.png index f367d9305f..85287c408d 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title2Lines[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f5e6549366bcd6d01f1bbab430222716365fb24845648fd9b102cefa7a2a5eb -size 24286 +oid sha256:4ac9b0bdda4eb06c71af7269be573ebc9ce4efddf2c983945da691365391aa3f +size 24303 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[0]_mobvoiticwatchpro5.png index be0c95073f..74d288a929 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5a3fdec6a5653e47931b0c5ad79aacbc6bb0cb8ce6558d05be52c662440a7a5 -size 24341 +oid sha256:24a172c17098758b471ef57c5934506fe331c45b156710a5c2da1e7cb98d4951 +size 24392 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[7]_largedevicesmallfonts.png index fe0ea84dc2..1a7547c33b 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_title3Lines[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:264b13df10e9d2f7361976c3b6638854380a6f54d47bab753f7e80c4f1dcfa3e -size 24513 +oid sha256:ee891ec45f1b643b8369534de77eab8462280e5ae697c22e11536019398cf8d5 +size 24506 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[0]_mobvoiticwatchpro5.png index 7bdc83fd6a..f7a0e518c7 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e94137533db978bc58ecda7e464f9ba95ac81370eea6a56740736e3e3d0508a -size 64400 +oid sha256:4f8862fd844b1678c989ffe57757335357cb9978d8d156959801c5c559c84dd1 +size 64684 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[2]_samsunggalaxywatch6large.png index a635025640..358348b6ef 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47c0010b6d2e37abf9de5de3033a6d83fcd12c7eeb025a52490e59188f12892e -size 68540 +oid sha256:bc5b26edd9cd77d7dbac83a81f7ee75f4e228a053691fe66003d764159110f57 +size 67207 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[3]_googlepixelwatch.png index c18e2963eb..8e0ae76222 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00964ef8ae4c67d015901534bab10b946af2794976417bf5e5c5c13ac8ec0b4a -size 50780 +oid sha256:7af33d05e382105fe1a2468e0762e65350f20179917451dc43bc853b5b685036 +size 51504 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[4]_genericsmallround.png index c18e2963eb..8e0ae76222 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00964ef8ae4c67d015901534bab10b946af2794976417bf5e5c5c13ac8ec0b4a -size 50780 +oid sha256:7af33d05e382105fe1a2468e0762e65350f20179917451dc43bc853b5b685036 +size 51504 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[5]_genericlargeround.png index 6d724009ac..86c989d278 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cacdf7a2c803a3af7ba406213dea27c9ee637178c1ca8d590b42bfae58aa59d2 -size 63235 +oid sha256:df51643b26f67a50b1066913b4f6166644a3fad472610c855ac0443dd3f67e55 +size 62537 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[6]_smalldevicebigfonts.png index 4b37cf99b6..edcd3185b8 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:282e60ad87c3682de308c5125b662caf4873516e71baf3a6b9650e982905115a -size 53792 +oid sha256:00849457f0ffb2d8a2d013e1b1082281905ecbf34f3015457151a49d61609795 +size 54674 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[7]_largedevicesmallfonts.png index aaa342d595..1b3b3385a9 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherCards[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c7de2828860d38c6f075b34147c5ae20b1ef177662ba70c64e7405cdcfb8d8d -size 65498 +oid sha256:8dac066f223ece8a2ac155c47f121767f554f8329d210bac7ab135821c2e4cc7 +size 62760 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[0]_mobvoiticwatchpro5.png index 2258843db7..2db755224e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ee7d950de5f1ee85bd9188c9772e929ce307de7398e4f7f7ea008429e0d6691 -size 26079 +oid sha256:1029993f57d5f5ebc800cc07898362d2f5640347616c145c1012591114ab25c8 +size 26088 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[2]_samsunggalaxywatch6large.png index 29039bac37..74dd6bb7c6 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e3f57e1d5b649cee43ec12d248273b671c81e20d3e6fb9b2d9ade417d4c6dc0 -size 27224 +oid sha256:f327f46cffd5d8b20aa93b82388c59d08394911952991cfd50ea65aba6bc0d8e +size 27410 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[3]_googlepixelwatch.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[3]_googlepixelwatch.png index 8fc374018d..265ff8f8a9 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[3]_googlepixelwatch.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[3]_googlepixelwatch.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cb97aa728197062f3d565726adb6d8bc68d5268792bde744178c72a5d76a79a -size 23274 +oid sha256:c05d1f211f3beea92aeb60ea6a2c1934c8eebe2e9f68772622fc4a652540d068 +size 23134 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[4]_genericsmallround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[4]_genericsmallround.png index 8fc374018d..265ff8f8a9 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[4]_genericsmallround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[4]_genericsmallround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cb97aa728197062f3d565726adb6d8bc68d5268792bde744178c72a5d76a79a -size 23274 +oid sha256:c05d1f211f3beea92aeb60ea6a2c1934c8eebe2e9f68772622fc4a652540d068 +size 23134 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[5]_genericlargeround.png index 0cfe004bb1..d0cb1e604e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a4abdb9b0fcee44f59a5f9c3a2ce9c4a63426b16b00e6f18f0c7bd53fcbb898 -size 25744 +oid sha256:18e0acab9adf44190d453b32c6a0aa0811d6c8f3e4a2d7854d8c3c701814371d +size 25664 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[6]_smalldevicebigfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[6]_smalldevicebigfonts.png index 470ac90a3a..27d1f09c0a 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[6]_smalldevicebigfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[6]_smalldevicebigfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbf427ec80251364ac99becfea41a6f2c2dfdcf5ab1243494497b3320edf6080 -size 23396 +oid sha256:6638f5366c2344f345cd972958031df705adcdbd5144f1fc5d90758ac708effd +size 23294 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[7]_largedevicesmallfonts.png index 7e95feddbe..5fc7f69b35 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherChips[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:890769d817cfd70713df040206098418d53b414365fd3513d1902a8bb05b209c -size 25266 +oid sha256:fe9c97dbf7fcee3823baf0c3a4b7a6bbf8cc652ba301b153a7ba90dea43d8936 +size 25292 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[0]_mobvoiticwatchpro5.png index d8320d7f79..9ea46919f5 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bb43d740bbff0f3060c338d4101236b4e87e5e5812031f6096d2e17c0d8b001 -size 37648 +oid sha256:955da0e9114d579b910ac12c1bad60d349262ce65e2a3e7d579a4c3d3b0bb7c0 +size 37673 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[7]_largedevicesmallfonts.png index 56ebeb7e08..03ae3af091 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleOtherText[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:399e5502a1e8eba811193e7cc7df0f2beb84295c7e8516c1c739b24c6cf30ec0 -size 38463 +oid sha256:34373d527da3e8272ab659503076d2116e7cdf629e83c078fab4b89ecd1d276a +size 38347 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[0]_mobvoiticwatchpro5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[0]_mobvoiticwatchpro5.png index fed1580c1d..d86405040e 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[0]_mobvoiticwatchpro5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[0]_mobvoiticwatchpro5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc54044a6769b1c10fb5afa7124d44c01c70d6e2d164e0f3ea2170f1485b7cbb -size 26944 +oid sha256:b4dcf7c8c246f7616ccdca3ef8d58e7b1dd084c4a7597fbde2a20a4a82ed9fca +size 26949 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[1]_samsunggalaxywatch5.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[1]_samsunggalaxywatch5.png index 87b4e2f251..c142ccf769 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[1]_samsunggalaxywatch5.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[1]_samsunggalaxywatch5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ab25765fed3d076e1c93eb7bf46b3f94ac39789bf6a4889f5887d03dbd89366 -size 24133 +oid sha256:9f6b611a0fd77a3bf9538732e611bbc4bbd4608ccff39a307d9aa4ced38b23a8 +size 24088 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[2]_samsunggalaxywatch6large.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[2]_samsunggalaxywatch6large.png index 5dd61f3098..b6feffeefb 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[2]_samsunggalaxywatch6large.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[2]_samsunggalaxywatch6large.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57a7aafae3f6f9db684d19bfaa37e367bdf7a2568c2013e721a6b3d0cb05619c -size 27339 +oid sha256:f1d7fb205ad966dfd4b0fe838322f61a7c1c2b95ade4e7b55bddd6ac791013d8 +size 27255 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[5]_genericlargeround.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[5]_genericlargeround.png index aea7790a80..c9939e0528 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[5]_genericlargeround.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[5]_genericlargeround.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c317032682e9a21a1d9e94c6e714a659fa2f481e3771ea5aafba55a59cb90a0 -size 25478 +oid sha256:24a163416751d5468f1f529bc6b8aeb65918cc873dc67d46194d57877b9799c8 +size 25397 diff --git a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[7]_largedevicesmallfonts.png b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[7]_largedevicesmallfonts.png index e4ae8a3cf4..0385282467 100644 --- a/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[7]_largedevicesmallfonts.png +++ b/sample/src/test/snapshots/images/com.google.android.horologist.spec_ScalingLazyColumnExamplesTest_titleUnspecified[7]_largedevicesmallfonts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e19f5b83f3aeeeada11b33842aef14410bd89a9e11d9bed89f7804af8e9b012 -size 26096 +oid sha256:26f798cb756b467506b2bd9dcdd820e0fcc94dafa8eb80d804cbd7192e71c38c +size 26090