article

Friday, February 11, 2022

SwiftUI Password Strength Checker

SwiftUI Password Strength Checker

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
//
//  ContentView.swift
//  swiftuidev15ios
//
//  Created by Cairocoders
//
 
import SwiftUI
 
struct ContentView: View {
     
    @State var email : String = ""
    @State var password : String = ""
    @State var passwordStrength : Int = 0
     
    func checkStrength(_ password: String) -> Int {
        let passwordLength = password.count
        var containsSymbol = false
        var containsUppercase = false
 
        for character in password {
            if "ABCDEFGHIJKLMNOPQRSTUVWXYZ".contains(character) {
                containsUppercase = true
            }
             
            if "!£$%&/()=?^;:_ç°§*,.-_".contains(character) {
                containsSymbol = true
            }
        }
         
        if passwordLength > 8 && containsSymbol && containsUppercase {
            return 1
        } else {
            return 0
        }
    }
     
    var body: some View {
        VStack {
            Spacer()
             
            Group {
                TextField("Email", text: $email)
                    .keyboardType(.emailAddress)
                    .autocapitalization(.none)
                TextField("Password", text: $password)
            }
            .padding(16)
            .background(Color.white)
             
            HStack {
                if checkStrength(password) == 0  {
                    Text("Weak").foregroundColor(Color.red)
                        .font(.system(size: 30.0)).padding()
                } else {
                    Text("Strong").foregroundColor(Color.green)
                        .font(.system(size: 30.0)).padding()
                }
            }
             
            Button {
 
            } label: {
                HStack {
                    Spacer()
                    Text("Log In")
                        .foregroundColor(.white)
                        .padding(.vertical, 10)
                        .font(.system(size: 14, weight: .semibold))
                    Spacer()
                }.background(Color.blue)
                 
            }
             
            Spacer()
             
        }.padding()
        .background(SwiftUI.Color.gray.edgesIgnoringSafeArea(.all))
    }
}
 
struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

Related Post