import Foundation import SwiftUI extension Text { init(describing object: CustomStringConvertible){ self.init(String(describing: object)) } }