struct ContentView: View {
   @State private var appData = ApplicationData.shared

   var body: some View {
      VStack {
         TextField("Insert your Name", text: $appData.inputMessage)
            .textFieldStyle(.roundedBorder)
         TextField("Insert Address", text: $appData.inputAddress)
            .textFieldStyle(.roundedBorder)
            .focusedValue(\.address, appData.inputAddress)
         Spacer()
      }.padding()
   }
}