import Foundation import SwiftUI extension Text { init(display: CustomStringConvertible) { self.init(display.description) } }