mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-25 22:45:41 +03:00
change background color for searchbar in contacts screen
not the best solution. Needs to be improved with theming of Compose. Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
3d1644a76d
commit
2549e884fd
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ fun DisplaySearch(text: String, onTextChange: (String) -> Unit, contactsViewMode
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.height(60.dp)
|
.height(60.dp)
|
||||||
.background(color = colorResource(id = R.color.grey_600)),
|
.background(color = colorResource(id = R.color.appbar)),
|
||||||
value = text,
|
value = text,
|
||||||
onValueChange = { onTextChange(it) },
|
onValueChange = { onTextChange(it) },
|
||||||
placeholder = {
|
placeholder = {
|
||||||
|
|
Loading…
Reference in a new issue