d8fb6b893f
* Migrate Updates screen to compose * Review Changes + Cleanup Remove more unused stuff and show confirmation dialog when mass deleting chapters * Review Changes 2 + Rebase
41 lines
1.2 KiB
Kotlin
41 lines
1.2 KiB
Kotlin
package eu.kanade.presentation.components
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
import androidx.compose.material3.MaterialTheme
|
|
import androidx.compose.material3.Text
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.remember
|
|
import androidx.compose.ui.Modifier
|
|
import androidx.compose.ui.platform.LocalContext
|
|
import androidx.compose.ui.text.font.FontWeight
|
|
import androidx.compose.ui.unit.dp
|
|
import eu.kanade.presentation.util.horizontalPadding
|
|
import eu.kanade.tachiyomi.util.lang.toRelativeString
|
|
import java.text.DateFormat
|
|
import java.util.Date
|
|
|
|
@Composable
|
|
fun RelativeDateHeader(
|
|
modifier: Modifier = Modifier,
|
|
date: Date,
|
|
relativeTime: Int,
|
|
dateFormat: DateFormat,
|
|
) {
|
|
val context = LocalContext.current
|
|
Text(
|
|
modifier = modifier
|
|
.padding(horizontal = horizontalPadding, vertical = 8.dp),
|
|
text = remember {
|
|
date.toRelativeString(
|
|
context,
|
|
relativeTime,
|
|
dateFormat,
|
|
)
|
|
},
|
|
style = MaterialTheme.typography.bodyMedium.copy(
|
|
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
|
fontWeight = FontWeight.SemiBold,
|
|
),
|
|
)
|
|
}
|