another.im-ios/Monal/another.im/Helpers/Binding+Extensions.swift
2024-11-19 17:07:51 +01:00

13 lines
289 B
Swift

import SwiftUI
extension Binding where Value == String {
func max(_ limit: Int) -> Self {
if wrappedValue.count > limit {
DispatchQueue.main.async {
wrappedValue = String(wrappedValue.dropLast())
}
}
return self
}
}