-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from FlipByBlink/ver1.0.1
Ver1.0.1
- Loading branch information
Showing
61 changed files
with
1,802 additions
and
186 deletions.
There are no files selected for viewing
141 changes: 116 additions & 25 deletions
141
HandsWidth.xcodeproj/project.pbxproj → HandsRuler.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ject.xcworkspace/contents.xcworkspacedata → ...ject.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import SwiftUI | ||
|
||
struct ContentView: View { | ||
@Environment(\.openImmersiveSpace) var openImmersiveSpace | ||
@Environment(\.dismissWindow) var dismissWindow | ||
var body: some View { | ||
NavigationStack { | ||
VStack { | ||
Spacer() | ||
HStack(spacing: 28) { | ||
Image(.graph1) | ||
.resizable() | ||
.aspectRatio(contentMode: .fit) | ||
.frame(width: 300) | ||
.clipShape(.rect(cornerRadius: 16, style: .continuous)) | ||
Image(.graph2) | ||
.resizable() | ||
.aspectRatio(contentMode: .fit) | ||
.frame(width: 300) | ||
.clipShape(.rect(cornerRadius: 16, style: .continuous)) | ||
} | ||
.padding(.horizontal, 8) | ||
Spacer() | ||
Button { | ||
Task { | ||
await self.openImmersiveSpace(id: "immersiveSpace") | ||
self.dismissWindow() | ||
} | ||
} label: { | ||
Text("Start") | ||
.font(.largeTitle) | ||
.padding(.vertical, 12) | ||
.padding(.horizontal, 4) | ||
} | ||
Spacer() | ||
} | ||
.navigationTitle("HandsRuler") | ||
.toolbar { | ||
NavigationLink { | ||
List { | ||
ℹ️AboutAppContent() | ||
} | ||
} label: { | ||
Label("About App", systemImage: "info") | ||
.padding(14) | ||
} | ||
.buttonBorderShape(.circle) | ||
.buttonStyle(.plain) | ||
} | ||
} | ||
.frame(width: 700, height: 450) | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions
21
HandsRuler/Supporting files/Assets/Assets.xcassets/aboutAppIcon.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "aboutAppIcon.png", | ||
"idiom" : "universal", | ||
"scale" : "1x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"scale" : "3x" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
HandsRuler/Supporting files/Assets/Developer_Publisher.xcassets/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...ting files/Assets/Developer_Publisher.xcassets/Developer_Publisher.imageset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "Developer_Publisher.heic", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Binary file added
BIN
+13.2 KB
...Assets/Developer_Publisher.xcassets/Developer_Publisher.imageset/Developer_Publisher.heic
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.