50 lines
1.5 KiB
Kotlin
50 lines
1.5 KiB
Kotlin
package eu.kanade.presentation.components
|
|
|
|
import androidx.compose.material.icons.Icons
|
|
import androidx.compose.material.icons.outlined.HelpOutline
|
|
import androidx.compose.material.icons.outlined.Refresh
|
|
import androidx.compose.material3.Surface
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.tooling.preview.PreviewLightDark
|
|
import eu.kanade.presentation.theme.TachiyomiTheme
|
|
import eu.kanade.tachiyomi.R
|
|
import kotlinx.collections.immutable.persistentListOf
|
|
import tachiyomi.presentation.core.screens.EmptyScreen
|
|
import tachiyomi.presentation.core.screens.EmptyScreenAction
|
|
|
|
@PreviewLightDark
|
|
@Composable
|
|
private fun NoActionPreview() {
|
|
TachiyomiTheme {
|
|
Surface {
|
|
EmptyScreen(
|
|
textResource = R.string.empty_screen,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
@PreviewLightDark
|
|
@Composable
|
|
private fun WithActionPreview() {
|
|
TachiyomiTheme {
|
|
Surface {
|
|
EmptyScreen(
|
|
textResource = R.string.empty_screen,
|
|
actions = persistentListOf(
|
|
EmptyScreenAction(
|
|
stringResId = R.string.action_retry,
|
|
icon = Icons.Outlined.Refresh,
|
|
onClick = {},
|
|
),
|
|
EmptyScreenAction(
|
|
stringResId = R.string.getting_started_guide,
|
|
icon = Icons.Outlined.HelpOutline,
|
|
onClick = {},
|
|
),
|
|
),
|
|
)
|
|
}
|
|
}
|
|
}
|