ContentView.swift
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | // // ContentView.swift // SwiftUIProject // // Created by Cairocoders // import SwiftUI struct ContentView: View { @State var username = "" @State var password = "" @State var invalidpassword = 0 @State var invalidusername = 0 @State private var showText: Bool = false var body: some View { VStack { HStack{ Image( "logo" ) .resizable() .frame(width: 150, height: 130, alignment: .center) } HStack { Image(systemName: "person" ) .foregroundColor(.gray) TextField( "Username" , text: $username) } .padding() .background(Color( "Color" )) .cornerRadius(8) .overlay(RoundedRectangle(cornerRadius: 8) .stroke(lineWidth: 1) .foregroundColor(invalidusername == 0 ? Color.clear : Color.red) ) .padding(.bottom, 20) .modifier(ShakeEffect(animatableData: CGFloat(invalidusername))) HStack { Image(systemName: "lock" ) .foregroundColor(.gray) if showText { TextField( "" , text: $password) } else { SecureField( "Password" , text: $password) } Button(action: { showText.toggle() }, label: { Image(systemName: showText ? "eye.slash.fill" : "eye.fill" ) .foregroundColor(.gray) }) } .padding() .background(Color( "Color" )) .cornerRadius(8) .overlay(RoundedRectangle(cornerRadius: 8) .stroke(lineWidth: 1) .foregroundColor(invalidpassword == 0 ? Color.clear : Color.red) ) .padding(.bottom, 20) .modifier(ShakeEffect(animatableData: CGFloat(invalidpassword))) Button(action: { }, label: { Text( "Forgot password" ).padding() }) Button(action: { withAnimation(. default ) { loginUser() } }, label: { Text( "Login" ) .font(.headline).bold().foregroundColor(.white).padding() .frame(width: 250, height: 50) .background(Color.blue) .cornerRadius(10) }) HStack { Text( "Don't have an account?" ) Button(action: { }, label: { Text( "Sign Up" ) }) }.padding() }.padding() } private func loginUser() { if username == "" { self.invalidusername += 1 print( "Username is required" ) } else if password == "" { self.invalidpassword += 1 self.invalidusername = 0 print( "password is required" ) } else { self.invalidpassword = 0 print( "email : \(username) pass : \(password)" ) } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct ShakeEffect : GeometryEffect { var travelDistance : CGFloat = 6 var numOfShake : CGFloat = 4 var animatableData: CGFloat func effectValue(size: CGSize) -> ProjectionTransform { ProjectionTransform(CGAffineTransform(translationX: travelDistance * sin (animatableData * .pi * numOfShake), y: 0)) } } |