Fixed size of keyboard icons.

This commit is contained in:
Marcin Czachursk 2023-02-27 08:53:24 +01:00
parent fbb8b1431e
commit ba53dd9b7d
1 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ struct ComposeView: View {
}
private let contentWidth = Int(UIScreen.main.bounds.width) - 50
private let keyboardFontSize = 14.0
var body: some View {
NavigationStack {
@ -328,7 +329,7 @@ struct ComposeView: View {
Text("\(self.applicationState.statusMaxCharacters - text.string.utf16.count)")
.foregroundColor(.lightGrayColor)
}
.font(.callout)
.font(.system(size: self.keyboardFontSize))
}
}