Skip to content

Commit

Permalink
Change start padding of event item when grouped (#3546)
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth authored Mar 18, 2024
1 parent fccf191 commit e458104
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class EventAdapter(
materialView.visibility = View.GONE
val composeView = holder.itemView.findViewById<ComposeView>(R.id.composeView)
composeView.setContent {
val leftSpacing = if (it.groupedByStage == true) Spacing.Spacing64 else Spacing.Spacing16
val leftSpacing = if (it.groupedByStage == true) Spacing.Spacing56 else Spacing.Spacing16
val bottomSpacing = if (it.showBottomShadow) {
Spacing.Spacing16
} else {
Expand Down

0 comments on commit e458104

Please sign in to comment.