123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 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 = listOf(
- EmptyScreenAction(
- stringResId = R.string.action_retry,
- icon = Icons.Outlined.Refresh,
- onClick = {},
- ),
- EmptyScreenAction(
- stringResId = R.string.getting_started_guide,
- icon = Icons.Outlined.HelpOutline,
- onClick = {},
- ),
- ),
- )
- }
- }
- }
|