Formatting

This commit is contained in:
Vitor Pamplona 2023-06-12 16:54:45 -04:00
parent f768a09bd8
commit 824e8795d5
2 changed files with 7 additions and 2 deletions

View File

@ -81,7 +81,7 @@ import kotlin.math.roundToInt
fun ReactionsRow(baseNote: Note, showReactionDetail: Boolean, accountViewModel: AccountViewModel, nav: (String) -> Unit) {
val grayTint = MaterialTheme.colors.placeholderText
var wantsToSeeReactions = remember {
val wantsToSeeReactions = remember {
mutableStateOf<Boolean>(false)
}

View File

@ -156,4 +156,9 @@ fun WatchAccountForHomeScreen(
}
@Immutable
class TabItem(val resource: Int, val viewModel: FeedViewModel, val routeForLastRead: String, val scrollStateKey: String)
class TabItem(
val resource: Int,
val viewModel: FeedViewModel,
val routeForLastRead: String,
val scrollStateKey: String
)