Skip to content

Commit

Permalink
Adding minor files, restyled .waiting case in ContentView
Browse files Browse the repository at this point in the history
  • Loading branch information
abkslm committed Oct 26, 2023
1 parent 3e3312c commit 3242797
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Spinner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@
DEVELOPMENT_TEAM = L7UDTQ6F5W;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_CFBundleDisplayName = "Spinner-B.R.";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
Expand Down Expand Up @@ -480,6 +481,7 @@
DEVELOPMENT_TEAM = L7UDTQ6F5W;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_CFBundleDisplayName = "Spinner-B.R.";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildLocationStyle</key>
<string>UseAppPreferences</string>
<key>CustomBuildLocationType</key>
<string>RelativeToDerivedData</string>
<key>DerivedDataLocationStyle</key>
<string>Default</string>
<key>ShowSharedSchemesAutomaticallyEnabled</key>
<true/>
</dict>
</plist>
4 changes: 3 additions & 1 deletion Spinner/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ struct ContentView: View {

switch loadState {
case .waiting: InitView(loadState: $loadState, participantID: "")
.transition(.push(from: .bottom).animation(.easeOut(duration: 0.50)))
.transition(.push(from: .bottom)
.animation(.easeOut(duration: 0.40))
.combined(with: .opacity))
case .running: GameView(loadState: $loadState)
.transition(.opacity.animation(.smooth(duration: 0.25)))
}
Expand Down
Binary file modified spinner-AppIcon.psd
Binary file not shown.

0 comments on commit 3242797

Please sign in to comment.