mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-09-22 12:03:09 -04:00
Fixed: The search placeholder was cut off in the Romansh
language.
* Updated the placeholder text to display on a single line and show an ellipsis (...) at the end if the text is too long.
This commit is contained in:
parent
0e39ce6f9d
commit
54a66d1084
@ -38,6 +38,7 @@ import androidx.compose.ui.res.painterResource
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.text.TextStyle
|
||||
import androidx.compose.ui.text.input.ImeAction
|
||||
import androidx.compose.ui.text.style.TextOverflow.Companion.Ellipsis
|
||||
import org.kiwix.kiwixmobile.core.R
|
||||
import org.kiwix.kiwixmobile.core.utils.ComposeDimens
|
||||
|
||||
@ -75,7 +76,9 @@ fun KiwixSearchView(
|
||||
Text(
|
||||
text = placeholder,
|
||||
color = Color.LightGray,
|
||||
fontSize = ComposeDimens.EIGHTEEN_SP
|
||||
fontSize = ComposeDimens.EIGHTEEN_SP,
|
||||
maxLines = ONE,
|
||||
overflow = Ellipsis
|
||||
)
|
||||
},
|
||||
colors = colors,
|
||||
|
Loading…
x
Reference in New Issue
Block a user