You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(mobile-app): Removed unused xml resources
* feat(mobile-app): Updated catalog list screens ui
* feat(mobile-app): Updated catalog list row composable
* feat(mobile-app): Updated catalog list categories slot
* feat(mobile-app): Updated catalog list row title text colors
* feat(mobile-app): Updated catalog list banner inactive color
Copy file name to clipboardExpand all lines: apps/mobile-app/src/main/kotlin/dev/marlonlom/apps/cappajv/features/catalog_list/screens/CompactTableTopCatalogListScreen.kt
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,6 @@ fun CompactTableTopCatalogListScreen(
Copy file name to clipboardExpand all lines: apps/mobile-app/src/main/kotlin/dev/marlonlom/apps/cappajv/features/catalog_list/screens/DefaultPortraitCatalogListScreen.kt
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,8 +50,8 @@ fun DefaultPortraitCatalogListScreen(
50
50
) {
51
51
Column(
52
52
modifier = modifier
53
-
.fillMaxWidth()
54
-
.safeContentPadding(),
53
+
.fillMaxWidth()
54
+
.safeContentPadding(),
55
55
horizontalAlignment =Alignment.CenterHorizontally
56
56
) {
57
57
CatalogListHeadline(appState)
@@ -60,7 +60,6 @@ fun DefaultPortraitCatalogListScreen(
Copy file name to clipboardExpand all lines: apps/mobile-app/src/main/kotlin/dev/marlonlom/apps/cappajv/features/catalog_list/slots/CatalogCategoriesChipGroup.kt
Copy file name to clipboardExpand all lines: apps/mobile-app/src/main/kotlin/dev/marlonlom/apps/cappajv/features/catalog_list/slots/CatalogListBanner.kt
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ fun CatalogListBanner(
114
114
privatefunBannerCard(
115
115
pageIndex:Int,
116
116
pagerState:PagerState,
117
-
bannerImage:Painter
117
+
bannerImage:Painter,
118
118
) {
119
119
Card(
120
120
onClick = {},
@@ -164,15 +164,18 @@ fun HorizontalPagerIndicator(
164
164
modifier:Modifier = Modifier,
165
165
) {
166
166
Row(
167
-
Modifier
167
+
modifier
168
168
.wrapContentHeight()
169
169
.fillMaxWidth()
170
170
.padding(bottom =10.dp),
171
171
verticalAlignment =Alignment.CenterVertically,
172
172
horizontalArrangement =Arrangement.Center
173
173
) {
174
174
repeat(pagerState.pageCount) { iteration ->
175
-
val color =if (pagerState.currentPage == iteration) activeColor elseColor.LightGray
0 commit comments