Initial Commit

This commit is contained in:
neon443
2024-05-26 19:24:17 +01:00
commit 32f03f50c3
12 changed files with 364 additions and 0 deletions

26
ContentView.swift Normal file
View File

@@ -0,0 +1,26 @@
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
NavigationSplitView {
List {
NavigationLink {
DiceView()
.navigationTitle("Dice")
} label: {
HStack {
Text("Dice")
Spacer()
Image(systemName: "die.face.6.fill")
}
}
}
.navigationTitle("RNG")
.navigationBarTitleDisplayMode(.inline)
} detail: {
Image(systemName: "dice.fill")
}
}
}
}