mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 04:55:29 +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
|
||||
.fillMaxWidth()
|
||||
.height(60.dp)
|
||||
.background(color = colorResource(id = R.color.grey_600)),
|
||||
.background(color = colorResource(id = R.color.appbar)),
|
||||
value = text,
|
||||
onValueChange = { onTextChange(it) },
|
||||
placeholder = {
|
||||
|
|
Loading…
Reference in a new issue