Done DiceView, created placeholder PasswordView but not implemented yet, still need to choose a symbol for it aswell

This commit is contained in:
neon443
2024-05-30 09:49:19 +01:00
parent ebe3f9bc1f
commit a3d1a7783e
3 changed files with 46 additions and 9 deletions

18
PasswordView.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// PasswordView.swift
// RNG
//
// Created by Nihaal on 30/05/2024.
//
import SwiftUI
struct PasswordView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
PasswordView()
}