From 0102c87570e868f521e04b765d360df681992cdf Mon Sep 17 00:00:00 2001 From: Shivam Goyal Date: Wed, 26 Feb 2025 13:16:43 +0530 Subject: [PATCH] NTP-38052 | BBPS | Top Bills Section UI Fixes (#15136) --- .../bbps/feature/billerlist/ui/RenderBillerListScreen.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android/navi-bbps/src/main/kotlin/com/navi/bbps/feature/billerlist/ui/RenderBillerListScreen.kt b/android/navi-bbps/src/main/kotlin/com/navi/bbps/feature/billerlist/ui/RenderBillerListScreen.kt index 96b4a4a9fa..d5e8323454 100644 --- a/android/navi-bbps/src/main/kotlin/com/navi/bbps/feature/billerlist/ui/RenderBillerListScreen.kt +++ b/android/navi-bbps/src/main/kotlin/com/navi/bbps/feature/billerlist/ui/RenderBillerListScreen.kt @@ -341,7 +341,7 @@ fun PopularBillersSection( text = stringResource(id = R.string.bbps_top_billers), fontFamily = naviFontFamily, fontSize = 16.sp, - fontWeight = getFontWeight(FontWeightEnum.NAVI_HEADLINE_REGULAR), + fontWeight = getFontWeight(FontWeightEnum.NAVI_BODY_DEMI_BOLD), color = NaviBbpsColor.textPrimary, ) @@ -351,7 +351,7 @@ fun PopularBillersSection( remember(popularBillers) { val numberOfRows = ceil(popularBillers.size / 3.0).toInt() val numberOfVerticalSpacers = numberOfRows - 1 - (numberOfRows * 120).dp + (numberOfVerticalSpacers * 16).dp + (numberOfRows * 104).dp + (numberOfVerticalSpacers * 12).dp } LazyVerticalGrid( @@ -369,6 +369,8 @@ fun PopularBillersSection( ) } } + + Spacer(modifier = Modifier.height(24.dp)) } }