Added hint that tap outside or pressing back button does not work to close FilterBar

This commit is contained in:
dankito 2024-09-08 20:46:54 +02:00
parent b61b1cb5b7
commit 0e4723389f
1 changed files with 6 additions and 1 deletions

View File

@ -44,7 +44,7 @@ fun FilterBar() {
modifier = Modifier.fillMaxSize().zIndex(1100f)
.padding(bottom = 64.dp, end = 74.dp)
) {
Column(Modifier.height(166.dp).width(390.dp)) {
Column(Modifier.height(210.dp).width(390.dp)) {
RoundedCornersCard(cornerSize = 4.dp, shadowElevation = 24.dp) {
Column(Modifier.fillMaxWidth().background(Color.White).padding(16.dp)) {
Row(Modifier.fillMaxWidth(), verticalAlignment = Alignment.CenterVertically) {
@ -83,8 +83,13 @@ fun FilterBar() {
)
}
}
Row(Modifier.padding(top = 6.dp)) {
Text("Schließen über den Zurück Button oder eines Klicks außerhalb funtioniert nicht (herzlichen Undank UI Framework!), zum Schließen bitte wieder auf das Filter Icon drücken")
}
}
}
}
}
}