Passwords is an iOS mobile app developed with Swift programming language. In this app you have the option through some fields to generate passwords and create your own one as can show you how strong it is and also you can save them in your library.
For persistent data and data synchronization, the SwiftData framework was used. This way, the user can store their data by synchronizing it across multiple devices with the same account credentials. This implementation ensures effective management and retrieval of sensitive data, providing the necessary security and reliability for storing user passwords.
@Model
class Password{
var name: String
var color: String
init(name: String, color: String) {
self.name = name
self.color = color
}
}
run.mp4
Xcode | GitΗub | Figma |
---|---|---|
Swift | SwiftUI | SwiftData |
---|---|---|
I'm always open to questions, suggestions and comments. If you have any questions or need assistance, feel free to contact me at nicktheodoridiscontact@gmail.com or through my GitHub account.
Follow me on social media for the latest news and updates:
- Twitter: nickiOSDev
- Instagram: nickmadethisone
- LinkedIn: Nikolaos Theodoridis
This project is distributed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0).
This means you can use, modify and share this work under the following conditions:
- You must attribute the original creator (attribution).
- You may not use this work for commercial purposes (non-commercial use).