This avoids compose snackbar text color issue (cherry picked from commit 4ef337f1e92fcdbded2de57c8f248b60d7795649)
25 lines
725 B
Kotlin
25 lines
725 B
Kotlin
package eu.kanade.presentation.theme
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.platform.LocalContext
|
|
import androidx.compose.ui.platform.LocalLayoutDirection
|
|
import com.google.android.material.composethemeadapter3.createMdc3Theme
|
|
|
|
@Composable
|
|
fun TachiyomiTheme(content: @Composable () -> Unit) {
|
|
val context = LocalContext.current
|
|
val layoutDirection = LocalLayoutDirection.current
|
|
|
|
val (colorScheme, typography) = createMdc3Theme(
|
|
context = context,
|
|
layoutDirection = layoutDirection,
|
|
)
|
|
|
|
MaterialTheme(
|
|
colorScheme = colorScheme!!,
|
|
typography = typography!!,
|
|
content = content,
|
|
)
|
|
}
|