mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
42 lines
1.3 KiB
Kotlin
42 lines
1.3 KiB
Kotlin
|
package eu.kanade.presentation.components
|
||
|
|
||
|
import androidx.compose.foundation.background
|
||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||
|
import androidx.compose.foundation.layout.padding
|
||
|
import androidx.compose.material3.MaterialTheme
|
||
|
import androidx.compose.material3.Text
|
||
|
import androidx.compose.runtime.Composable
|
||
|
import androidx.compose.ui.Modifier
|
||
|
import androidx.compose.ui.res.stringResource
|
||
|
import androidx.compose.ui.text.style.TextAlign
|
||
|
import androidx.compose.ui.unit.dp
|
||
|
import eu.kanade.tachiyomi.R
|
||
|
|
||
|
@Composable
|
||
|
fun DownloadedOnlyModeBanner() {
|
||
|
Text(
|
||
|
text = stringResource(R.string.label_downloaded_only),
|
||
|
modifier = Modifier
|
||
|
.background(color = MaterialTheme.colorScheme.tertiary)
|
||
|
.fillMaxWidth()
|
||
|
.padding(4.dp),
|
||
|
color = MaterialTheme.colorScheme.onTertiary,
|
||
|
textAlign = TextAlign.Center,
|
||
|
style = MaterialTheme.typography.labelMedium,
|
||
|
)
|
||
|
}
|
||
|
|
||
|
@Composable
|
||
|
fun IncognitoModeBanner() {
|
||
|
Text(
|
||
|
text = stringResource(R.string.pref_incognito_mode),
|
||
|
modifier = Modifier
|
||
|
.background(color = MaterialTheme.colorScheme.primary)
|
||
|
.fillMaxWidth()
|
||
|
.padding(4.dp),
|
||
|
color = MaterialTheme.colorScheme.onPrimary,
|
||
|
textAlign = TextAlign.Center,
|
||
|
style = MaterialTheme.typography.labelMedium,
|
||
|
)
|
||
|
}
|