Move advance search functionality to search results

This commit is contained in:
Kgothatso Ngako
2026-04-01 16:37:20 +02:00
parent 3212c174ea
commit 2901b9209d
2 changed files with 12 additions and 12 deletions

View File

@@ -173,6 +173,18 @@ fun SearchResultScreen(
)
}
},
trailingIcon = {
IconButton(
onClick = {
// TODO: Adjust search
}
) {
Icon(
Icons.Default.Tune,
contentDescription = "Adjust Search"
)
}
}
)
},
expanded = expanded,

View File

@@ -232,18 +232,6 @@ fun SearchScreen(
contentDescription = "Search"
)
}
},
trailingIcon = {
IconButton(
onClick = {
// TODO: Adjust search
}
) {
Icon(
Icons.Default.Tune,
contentDescription = "Adjust Search"
)
}
}
)
},