Skip to content

Commit

Permalink
Merge branch 'add-chevrons-to-daita-and-multihop-list-items-droid-1707'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pururun committed Jan 7, 2025
2 parents 7eb54f3 + 4698cd2 commit 1eae568
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,13 @@ private fun DaitaCell(isDaitaEnabled: Boolean, onDaitaClick: () -> Unit) {
}
),
onCellClicked = onDaitaClick,
bodyView = {
Icon(
imageVector = Icons.Default.ChevronRight,
contentDescription = title,
tint = MaterialTheme.colorScheme.onPrimary,
)
},
)
}

Expand All @@ -258,5 +265,12 @@ private fun MultihopCell(isMultihopEnabled: Boolean, onMultihopClick: () -> Unit
}
),
onCellClicked = onMultihopClick,
bodyView = {
Icon(
imageVector = Icons.Default.ChevronRight,
contentDescription = title,
tint = MaterialTheme.colorScheme.onPrimary,
)
},
)
}

0 comments on commit 1eae568

Please sign in to comment.