File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
wearapp/src/main/java/com/thewizrd/simpleweather/ui/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,16 @@ package com.thewizrd.simpleweather.ui.components
22
33import androidx.compose.foundation.Image
44import androidx.compose.foundation.layout.fillMaxWidth
5+ import androidx.compose.foundation.layout.height
56import androidx.compose.foundation.layout.size
6- import androidx.compose.foundation.layout.wrapContentHeight
77import androidx.compose.foundation.layout.wrapContentSize
88import androidx.compose.runtime.Composable
99import androidx.compose.ui.Alignment
1010import androidx.compose.ui.Modifier
1111import androidx.compose.ui.draw.rotate
1212import androidx.compose.ui.platform.LocalInspectionMode
1313import androidx.compose.ui.res.painterResource
14+ import androidx.compose.ui.unit.dp
1415import androidx.wear.compose.material.Chip
1516import androidx.wear.compose.material.ChipDefaults
1617import androidx.wear.compose.material.Text
@@ -31,7 +32,7 @@ fun WeatherDetailItem(
3132 Chip (
3233 modifier = Modifier
3334 .fillMaxWidth()
34- .wrapContentHeight( ),
35+ .height( 60 .dp ),
3536 label = {
3637 Text (
3738 text = spannableStringToAnnotatedString(model.label)
You can’t perform that action at this time.
0 commit comments