mirror of
https://github.com/neon443/RNG_Swift.git
synced 2026-03-11 14:56:16 +00:00
Done DiceView, created placeholder PasswordView but not implemented yet, still need to choose a symbol for it aswell
This commit is contained in:
@@ -12,9 +12,32 @@ struct ContentView: View {
|
||||
HStack {
|
||||
Text("Dice")
|
||||
Spacer()
|
||||
Image(systemName: "die.face.6.fill")
|
||||
Image(systemName: "die.face.1")
|
||||
Image(systemName: "die.face.2.fill")
|
||||
Image(systemName: "die.face.3")
|
||||
Image(systemName: "die.face.4.fill")
|
||||
Image(systemName: "die.face.5")
|
||||
Image(systemName: "die.face.6.fill")
|
||||
}
|
||||
}
|
||||
NavigationLink {
|
||||
PasswordView()
|
||||
} label: {
|
||||
HStack {
|
||||
Text("Password")
|
||||
Spacer()
|
||||
Image(systemName: "ellipsis.rectangle")
|
||||
}
|
||||
}
|
||||
NavigationLink {
|
||||
PasswordView()
|
||||
} label: {
|
||||
HStack {
|
||||
Text("Password")
|
||||
Spacer()
|
||||
Image(systemName: "rectangle.and.pencil.and.ellipsis")
|
||||
}
|
||||
}
|
||||
}
|
||||
.navigationTitle("RNG")
|
||||
.navigationBarTitleDisplayMode(.inline)
|
||||
|
||||
Reference in New Issue
Block a user