From b2d910f2d3eb454adba4706ec95b03ec60cc2747 Mon Sep 17 00:00:00 2001 From: Sayed Owais Ali Date: Thu, 6 Mar 2025 18:04:33 +0530 Subject: [PATCH] NTP-45267 | Owais | fund box height fixed (#15301) --- .../highestReturnFundsWidgetComposable/FundBoxComposable.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/app/src/main/java/com/naviapp/home/dashboard/ui/compose/investmentTab/widgets/highestReturnFundsWidgetComposable/FundBoxComposable.kt b/android/app/src/main/java/com/naviapp/home/dashboard/ui/compose/investmentTab/widgets/highestReturnFundsWidgetComposable/FundBoxComposable.kt index 4dc899a824..cbceba58bc 100644 --- a/android/app/src/main/java/com/naviapp/home/dashboard/ui/compose/investmentTab/widgets/highestReturnFundsWidgetComposable/FundBoxComposable.kt +++ b/android/app/src/main/java/com/naviapp/home/dashboard/ui/compose/investmentTab/widgets/highestReturnFundsWidgetComposable/FundBoxComposable.kt @@ -15,7 +15,6 @@ import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.wrapContentHeight import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier @@ -84,7 +83,7 @@ fun FundBoxComposable( ShapeUtil.getShape(shape = cardData.property?.borderStrokeData?.shape), ) .width(cardWidth) - .wrapContentHeight() + .height(134.dp) .clickableWithNoGesture(onClick = { onFundClick(cardData.actionData) }) ) { Column(modifier = Modifier.setPadding(cardData.property?.padding)) {