Refactoring variable name in Reactions

This commit is contained in:
Vitor Pamplona 2023-06-09 10:00:37 -04:00
parent b3e2b78415
commit 5d8aa7bb58

View File

@ -77,7 +77,7 @@ import java.math.RoundingMode
import kotlin.math.roundToInt
@Composable
fun ReactionsRow(baseNote: Note, showReactions: Boolean, accountViewModel: AccountViewModel, nav: (String) -> Unit) {
fun ReactionsRow(baseNote: Note, showReactionDetail: Boolean, accountViewModel: AccountViewModel, nav: (String) -> Unit) {
val grayTint = MaterialTheme.colors.onSurface.copy(alpha = 0.32f)
var wantsToSeeReactions = remember {
@ -87,7 +87,7 @@ fun ReactionsRow(baseNote: Note, showReactions: Boolean, accountViewModel: Accou
Spacer(modifier = Modifier.height(8.dp))
Row(verticalAlignment = CenterVertically, modifier = Modifier.padding(start = 10.dp)) {
if (showReactions) {
if (showReactionDetail) {
Row(
verticalAlignment = CenterVertically,
modifier = Modifier
@ -116,7 +116,7 @@ fun ReactionsRow(baseNote: Note, showReactions: Boolean, accountViewModel: Accou
}
}
if (showReactions && wantsToSeeReactions.value) {
if (showReactionDetail && wantsToSeeReactions.value) {
ReactionDetailGallery(baseNote, nav, accountViewModel)
}
}