Skip to content

Commit

Permalink
bottomshet buttons divider
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmateos authored and andresmr committed Sep 5, 2024
1 parent 450caf5 commit 8a95aa4
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,13 @@ class BottomSheetDialog(
onDismiss = {
dismiss()
},
content = {
bottomSheetDialogUiModel.clickableWord?.let {
ClickableTextContent(bottomSheetDialogUiModel.message ?: "", it)
}
content = bottomSheetDialogUiModel.clickableWord?.let {
{ ClickableTextContent(bottomSheetDialogUiModel.message ?: "", it) }
},
showSectionDivider = when (bottomSheetDialogUiModel.clickableWord) {
null -> true
else -> false
},
showSectionDivider = false,
)
}
}
Expand Down

0 comments on commit 8a95aa4

Please sign in to comment.