4774deb1ef
* Use Stable interface for Updates screen + Cleanup Co-Authored-By: Ivan Iskandar <12537387+ivaniskandar@users.noreply.github.com> * Disable swipe refresh in selection mode * Review Changes Co-Authored-By: Andreas <6576096+ghostbear@users.noreply.github.com> * Review Changes 2 Co-authored-by: Ivan Iskandar <12537387+ivaniskandar@users.noreply.github.com> Co-authored-by: Andreas <6576096+ghostbear@users.noreply.github.com>
35 lines
980 B
Kotlin
35 lines
980 B
Kotlin
package eu.kanade.presentation.updates
|
|
|
|
import androidx.compose.material3.AlertDialog
|
|
import androidx.compose.material3.Text
|
|
import androidx.compose.material3.TextButton
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.res.stringResource
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
@Composable
|
|
fun UpdatesDeleteConfirmationDialog(
|
|
onDismissRequest: () -> Unit,
|
|
onConfirm: () -> Unit,
|
|
) {
|
|
AlertDialog(
|
|
text = {
|
|
Text(text = stringResource(R.string.confirm_delete_chapters))
|
|
},
|
|
onDismissRequest = onDismissRequest,
|
|
confirmButton = {
|
|
TextButton(onClick = {
|
|
onConfirm()
|
|
onDismissRequest()
|
|
},) {
|
|
Text(text = stringResource(android.R.string.ok))
|
|
}
|
|
},
|
|
dismissButton = {
|
|
TextButton(onClick = onDismissRequest) {
|
|
Text(text = stringResource(android.R.string.cancel))
|
|
}
|
|
},
|
|
)
|
|
}
|