Adding the suffix after the hashtag icon

This commit is contained in:
Vitor Pamplona
2023-03-17 14:06:00 -04:00
parent 81e31319c7
commit 412c5c557a

View File

@@ -231,14 +231,6 @@ fun HashTag(word: String, accountViewModel: AccountViewModel, navController: Nav
) { ) {
append("#$tag") append("#$tag")
} }
if (suffix != null) {
withStyle(
LocalTextStyle.current.copy(color = MaterialTheme.colors.onBackground)
.toSpanStyle()
) {
append(suffix)
}
}
}, },
onClick = { navController.navigate("Hashtag/$tag") } onClick = { navController.navigate("Hashtag/$tag") }
) )
@@ -252,7 +244,7 @@ fun HashTag(word: String, accountViewModel: AccountViewModel, navController: Nav
) )
} }
Text(text = " ") Text(text = "$suffix ")
} else { } else {
Text(text = "$word ") Text(text = "$word ")
} }