Update ProfileScreen.kt

This commit is contained in:
Believethehype
2023-03-29 10:52:31 +02:00
parent b865d15adf
commit d61844436d
@@ -430,12 +430,13 @@ private fun DrawAdditionalInfo(baseUser: User, account: Account, accountViewMode
fontSize = 25.sp fontSize = 25.sp
) )
} }
}
Row(verticalAlignment = Alignment.CenterVertically) {
user.bestUsername()?.let { user.bestUsername()?.let {
Text( Text(
"@$it", "@$it",
color = MaterialTheme.colors.onSurface.copy(alpha = 0.32f), color = MaterialTheme.colors.onSurface.copy(alpha = 0.32f),
modifier = Modifier.padding(top = 1.dp, bottom = 1.dp, start = 5.dp) modifier = Modifier.padding(top = 1.dp, bottom = 1.dp)
) )
} }
} }