Skip to content

Commit

Permalink
Add missing chevrons in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Pururun committed Jan 7, 2025
1 parent 7eb54f3 commit 4698cd2
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 4698cd2

Please sign in to comment.