Skip to content

[ImgBot] Optimize images #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1520"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "D4B14F0E2B5C44A300CF2AE6"
BuildableName = "crescendo scouting app.app"
BlueprintName = "crescendo scouting app"
ReferencedContainer = "container:crescendo scouting app.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "D4B14F1E2B5C44A700CF2AE6"
BuildableName = "crescendo scouting appTests.xctest"
BlueprintName = "crescendo scouting appTests"
ReferencedContainer = "container:crescendo scouting app.xcodeproj">
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "D4B14F282B5C44A800CF2AE6"
BuildableName = "crescendo scouting appUITests.xctest"
BlueprintName = "crescendo scouting appUITests"
ReferencedContainer = "container:crescendo scouting app.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "D4B14F0E2B5C44A300CF2AE6"
BuildableName = "crescendo scouting app.app"
BlueprintName = "crescendo scouting app"
ReferencedContainer = "container:crescendo scouting app.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "D4B14F0E2B5C44A300CF2AE6"
BuildableName = "crescendo scouting app.app"
BlueprintName = "crescendo scouting app"
ReferencedContainer = "container:crescendo scouting app.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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>SchemeUserState</key>
<dict>
<key>crescendo scouting app.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>
<dict>
<key>D4B14F0E2B5C44A300CF2AE6</key>
<dict>
<key>primary</key>
<true/>
</dict>
<key>D4B14F1E2B5C44A700CF2AE6</key>
<dict>
<key>primary</key>
<true/>
</dict>
<key>D4B14F282B5C44A800CF2AE6</key>
<dict>
<key>primary</key>
<true/>
</dict>
</dict>
</dict>
</plist>
File renamed without changes.
File renamed without changes.
76 changes: 76 additions & 0 deletions crescendo scouting app/FrontPageView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
//
// FrontPageView.swift
// practice
//
// Created by Celine Lou on 1/23/24.
//

import SwiftUI

struct FrontPageView: View {
@State private var moved = false;
@State public var selection = "Red";
@State public var matchNum = "";
@State public var startingPosition = "1";
@State public var teamNum = "";
let teamColor = ["Red", "Blue"];
let startingPositions = ["1", "2,", "3", "4", "No show"];

var body: some View {
if !moved{
ZStack{
VStack(alignment: .center, spacing:50){
Text("Team Select").foregroundColor(.teal).bold().font(.system(size: 50)).offset(y: -100)

VStack{
Text("Team Info: ").foregroundColor(.teal).bold().font(.title).offset(y: -110)
Picker("Select team color", selection: $selection){
ForEach(teamColor, id: \.self){
Text($0)
}
}.pickerStyle(.menu).multilineTextAlignment(.center).fixedSize().font(.title).offset(y:-100)

TextField("Team # (required)", text: $teamNum).multilineTextAlignment(.center)
.foregroundColor(.blue)
.font(.system(size:25))
.monospacedDigit()
.minimumScaleFactor(4)
.offset(y: -80)

TextField("Match # (required)", text: $matchNum).multilineTextAlignment(.center)
.foregroundColor(.blue)
.font(.system(size:25))
.monospacedDigit()
.minimumScaleFactor(4)
.offset(y: -50)

Text("Starting Position:").foregroundColor(.teal).bold().font(.title)

Picker("Starting Position", selection: $startingPosition){
ForEach(startingPositions, id: \.self){
Text($0)
}
}.pickerStyle(.menu).multilineTextAlignment(.center).fixedSize().font(.title3)

}

var showDetails = false;
if (!String(teamNum).isEmpty && !String(matchNum).isEmpty){
HStack{
Text("TO AUTON").font(.title).fontWeight(.bold).onTapGesture {
moved = true;
}
}.offset(y: 50)
}
}
}
}
else{
ContentView()
}
}
}

#Preview {
FrontPageView()
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import SwiftUI

@main
struct practiceApp: App {
struct crescendo_scouting_appApp: App {
var body: some Scene {
WindowGroup {
FrontPageView()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import XCTest
@testable import practice

final class practiceTests: XCTestCase {
final class crescendo_scouting_appTests: XCTestCase {

override func setUpWithError() throws {
// Put setup code here. This method is called before the invocation of each test method in the class.
Expand Down

This file was deleted.

This file was deleted.

30 changes: 0 additions & 30 deletions practice/FrontPageView.swift

This file was deleted.