|
@@ -1,18 +1,20 @@
|
|
package eu.kanade.presentation.browse.components
|
|
package eu.kanade.presentation.browse.components
|
|
|
|
|
|
-import androidx.compose.material.TextButton
|
|
|
|
import androidx.compose.material3.AlertDialog
|
|
import androidx.compose.material3.AlertDialog
|
|
import androidx.compose.material3.Text
|
|
import androidx.compose.material3.Text
|
|
|
|
+import androidx.compose.material3.TextButton
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.getValue
|
|
import androidx.compose.runtime.getValue
|
|
import androidx.compose.runtime.setValue
|
|
import androidx.compose.runtime.setValue
|
|
import androidx.compose.ui.res.stringResource
|
|
import androidx.compose.ui.res.stringResource
|
|
|
|
+import eu.kanade.domain.manga.model.Manga
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
|
|
@Composable
|
|
@Composable
|
|
fun RemoveMangaDialog(
|
|
fun RemoveMangaDialog(
|
|
onDismissRequest: () -> Unit,
|
|
onDismissRequest: () -> Unit,
|
|
onConfirm: () -> Unit,
|
|
onConfirm: () -> Unit,
|
|
|
|
+ mangaToRemove: Manga,
|
|
) {
|
|
) {
|
|
AlertDialog(
|
|
AlertDialog(
|
|
onDismissRequest = onDismissRequest,
|
|
onDismissRequest = onDismissRequest,
|
|
@@ -35,7 +37,7 @@ fun RemoveMangaDialog(
|
|
Text(text = stringResource(R.string.are_you_sure))
|
|
Text(text = stringResource(R.string.are_you_sure))
|
|
},
|
|
},
|
|
text = {
|
|
text = {
|
|
- Text(text = stringResource(R.string.remove_manga))
|
|
|
|
|
|
+ Text(text = stringResource(R.string.remove_manga, mangaToRemove.title))
|
|
},
|
|
},
|
|
)
|
|
)
|
|
}
|
|
}
|