From 2e7a33c6f0e22f6097ec7182701e2e1f6ad51e85 Mon Sep 17 00:00:00 2001 From: Purvesh Dodiya Date: Wed, 29 Mar 2023 12:37:26 +0530 Subject: [PATCH] Minor changes --- iOSTestApp/iOSTestApp/ContentView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iOSTestApp/iOSTestApp/ContentView.swift b/iOSTestApp/iOSTestApp/ContentView.swift index 9e9a3ec..a79b5b7 100644 --- a/iOSTestApp/iOSTestApp/ContentView.swift +++ b/iOSTestApp/iOSTestApp/ContentView.swift @@ -36,18 +36,18 @@ extension ContentView { .padding(10) .background(.gray) .cornerRadius(10) - TextField("Last name", text: $lastName) + Frame("Last name", text: $lastName) .padding(10) .background(.gray) .cornerRadius(10) - TextField("Email", text: $email) + Text("Email", text: $email) .padding(10) .background(.gray) .cornerRadius(10) Spacer().frame(height: 30) } - Group { + Form { Button("SAve") { // Save data debugPrint("Saving")