more scale effect

This commit is contained in:
spaced4ndy
2024-05-06 11:54:37 +04:00
parent 5e251f4b33
commit 3d9e1b4bf3
2 changed files with 4 additions and 2 deletions
@@ -96,7 +96,9 @@ struct ChatsView: View {
}
}
if cs.isEmpty && !chatModel.chats.isEmpty {
Text("No filtered chats").foregroundColor(.secondary)
Text("No filtered chats")
.scaleEffect(x: 1, y: oneHandUI ? -1 : 1, anchor: .center)
.foregroundColor(.secondary)
}
}
}
@@ -41,7 +41,7 @@ struct AppearanceSettings: View {
}
Section("Interface") {
settingsRow("hand.tap") {
settingsRow("hand.wave") {
Toggle("One-hand UI", isOn: $oneHandUI)
}
}