struct ContentView: View {
   var body: some View {
      Text("Monsters are real, and ghosts are real too. They live inside us, and sometimes, they win. Stephen King.")
         .padding()
         .lineLimit(1)
         .truncationMode(.middle)
   }
}