(cherry picked from commit 1009e15aa61f3a717d0fec8a6d7c2d57aacdd4e1) # Conflicts: # app/src/main/java/eu/kanade/presentation/more/settings/widget/TextPreferenceWidget.kt
16 lines
324 B
Kotlin
16 lines
324 B
Kotlin
package eu.kanade.presentation.util
|
|
|
|
import android.content.res.Configuration
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
|
|
@Preview(
|
|
name = "Light",
|
|
showBackground = true,
|
|
)
|
|
@Preview(
|
|
name = "Dark",
|
|
showBackground = true,
|
|
uiMode = Configuration.UI_MODE_NIGHT_YES,
|
|
)
|
|
annotation class ThemePreviews
|