|
@@ -1,6 +1,7 @@
|
|
|
package eu.kanade.presentation.manga
|
|
|
|
|
|
-import androidx.compose.foundation.layout.Row
|
|
|
+import androidx.compose.foundation.layout.Arrangement
|
|
|
+import androidx.compose.foundation.layout.FlowRow
|
|
|
import androidx.compose.foundation.layout.Spacer
|
|
|
import androidx.compose.material3.AlertDialog
|
|
|
import androidx.compose.material3.Text
|
|
@@ -8,6 +9,7 @@ import androidx.compose.material3.TextButton
|
|
|
import androidx.compose.runtime.Composable
|
|
|
import androidx.compose.ui.Modifier
|
|
|
import androidx.compose.ui.res.stringResource
|
|
|
+import androidx.compose.ui.unit.dp
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
|
|
@Composable
|
|
@@ -18,15 +20,27 @@ fun DuplicateMangaDialog(
|
|
|
) {
|
|
|
AlertDialog(
|
|
|
onDismissRequest = onDismissRequest,
|
|
|
+ title = {
|
|
|
+ Text(text = stringResource(R.string.are_you_sure))
|
|
|
+ },
|
|
|
+ text = {
|
|
|
+ Text(text = stringResource(R.string.confirm_add_duplicate_manga))
|
|
|
+ },
|
|
|
confirmButton = {
|
|
|
- Row {
|
|
|
- TextButton(onClick = {
|
|
|
- onDismissRequest()
|
|
|
- onOpenManga()
|
|
|
- },) {
|
|
|
+ FlowRow(
|
|
|
+ horizontalArrangement = Arrangement.spacedBy(4.dp),
|
|
|
+ ) {
|
|
|
+ TextButton(
|
|
|
+ onClick = {
|
|
|
+ onDismissRequest()
|
|
|
+ onOpenManga()
|
|
|
+ },
|
|
|
+ ) {
|
|
|
Text(text = stringResource(R.string.action_show_manga))
|
|
|
}
|
|
|
+
|
|
|
Spacer(modifier = Modifier.weight(1f))
|
|
|
+
|
|
|
TextButton(onClick = onDismissRequest) {
|
|
|
Text(text = stringResource(R.string.action_cancel))
|
|
|
}
|
|
@@ -40,11 +54,5 @@ fun DuplicateMangaDialog(
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- title = {
|
|
|
- Text(text = stringResource(R.string.are_you_sure))
|
|
|
- },
|
|
|
- text = {
|
|
|
- Text(text = stringResource(R.string.confirm_add_duplicate_manga))
|
|
|
- },
|
|
|
)
|
|
|
}
|