mirror of
https://github.com/mihonapp/mihon.git
synced 2024-12-27 03:18:25 +01:00
force recomposition everytimes actionModeCounter is changed
This commit is contained in:
parent
9ad4ca9d77
commit
990760e72a
@ -9,7 +9,6 @@ import androidx.compose.material3.LocalContentColor
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.surfaceColorAtElevation
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.derivedStateOf
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.remember
|
||||
@ -46,9 +45,7 @@ fun MangaToolbar(
|
||||
modifier: Modifier = Modifier,
|
||||
backgroundAlphaProvider: () -> Float,
|
||||
) {
|
||||
val isActionMode by remember(actionModeCounter) {
|
||||
derivedStateOf { actionModeCounter > 0 }
|
||||
}
|
||||
val isActionMode = remember(actionModeCounter) { actionModeCounter > 0 }
|
||||
AppBar(
|
||||
modifier = modifier,
|
||||
title = title,
|
||||
|
Loading…
Reference in New Issue
Block a user