Fix Add Repo input not taking up the full dialog width (#2816)

This commit is contained in:
Cuong-Tran
2026-01-24 20:50:15 +07:00
committed by GitHub
parent d6e17b04c3
commit 82ffc8efa6
2 changed files with 3 additions and 0 deletions
@@ -1,6 +1,7 @@
package eu.kanade.presentation.more.settings.screen.browse.components
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material3.AlertDialog
import androidx.compose.material3.OutlinedTextField
@@ -61,6 +62,7 @@ fun ExtensionRepoCreateDialog(
OutlinedTextField(
modifier = Modifier
.fillMaxWidth()
.focusRequester(focusRequester),
value = name,
onValueChange = { name = it },