Center global search prompt properly in library list mode

(cherry picked from commit 11cc789e3618a8f9296ca2040bf455393b677705)
This commit is contained in:
arkon 2022-10-29 23:20:35 -04:00 committed by Jobobby04
parent 1256646e91
commit 6c377f23e9

View File

@ -2,6 +2,7 @@ package eu.kanade.presentation.library.components
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.lazy.items
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
@ -39,7 +40,10 @@ fun LibraryList(
) {
item {
if (searchQuery.isNullOrEmpty().not()) {
TextButton(onClick = onGlobalSearchClicked) {
TextButton(
modifier = Modifier.fillMaxWidth(),
onClick = onGlobalSearchClicked,
) {
Text(
text = stringResource(R.string.action_global_search_query, searchQuery!!),
modifier = Modifier.zIndex(99f),