diff --git a/02-your-first-simple-animations/projects/final/SportFan.xcodeproj/project.pbxproj b/02-your-first-simple-animations/projects/final/SportFan.xcodeproj/project.pbxproj
index b41d029..ab7e5d1 100644
--- a/02-your-first-simple-animations/projects/final/SportFan.xcodeproj/project.pbxproj
+++ b/02-your-first-simple-animations/projects/final/SportFan.xcodeproj/project.pbxproj
@@ -117,7 +117,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -194,24 +193,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/02-your-first-simple-animations/projects/starter/SportFan.xcodeproj/project.pbxproj b/02-your-first-simple-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
index 124d902..939cd59 100644
--- a/02-your-first-simple-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
+++ b/02-your-first-simple-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
@@ -94,7 +94,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -171,24 +170,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/03-view-transitions/projects/final/SportFan.xcodeproj/project.pbxproj b/03-view-transitions/projects/final/SportFan.xcodeproj/project.pbxproj
index ef8da67..1bb69c9 100644
--- a/03-view-transitions/projects/final/SportFan.xcodeproj/project.pbxproj
+++ b/03-view-transitions/projects/final/SportFan.xcodeproj/project.pbxproj
@@ -163,7 +163,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -240,24 +239,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/03-view-transitions/projects/final/SportFan/ContentView.swift b/03-view-transitions/projects/final/SportFan/ContentView.swift
index 4de6c36..bbc8e69 100644
--- a/03-view-transitions/projects/final/SportFan/ContentView.swift
+++ b/03-view-transitions/projects/final/SportFan/ContentView.swift
@@ -90,6 +90,7 @@ struct ContentView: View {
}
} label: {
Label("Filter", systemImage: "line.3.horizontal.decrease.circle")
+ .foregroundColor(Constants.orange)
}
}
}
diff --git a/03-view-transitions/projects/starter/SportFan.xcodeproj/project.pbxproj b/03-view-transitions/projects/starter/SportFan.xcodeproj/project.pbxproj
index 9136eec..f90eb09 100644
--- a/03-view-transitions/projects/starter/SportFan.xcodeproj/project.pbxproj
+++ b/03-view-transitions/projects/starter/SportFan.xcodeproj/project.pbxproj
@@ -146,7 +146,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -223,24 +222,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/04-creating-animations/projects/final/SportFan.xcodeproj/project.pbxproj b/04-creating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
index 07e32e6..0c893c8 100644
--- a/04-creating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
+++ b/04-creating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
@@ -169,7 +169,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -246,24 +245,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/04-creating-animations/projects/final/SportFan/ContentView.swift b/04-creating-animations/projects/final/SportFan/ContentView.swift
index 4de6c36..bbc8e69 100644
--- a/04-creating-animations/projects/final/SportFan/ContentView.swift
+++ b/04-creating-animations/projects/final/SportFan/ContentView.swift
@@ -90,6 +90,7 @@ struct ContentView: View {
}
} label: {
Label("Filter", systemImage: "line.3.horizontal.decrease.circle")
+ .foregroundColor(Constants.orange)
}
}
}
diff --git a/04-creating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj b/04-creating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
index f478f42..a4d3037 100644
--- a/04-creating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
+++ b/04-creating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
@@ -163,7 +163,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -240,24 +239,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/04-creating-animations/projects/starter/SportFan/ContentView.swift b/04-creating-animations/projects/starter/SportFan/ContentView.swift
index 4de6c36..bbc8e69 100644
--- a/04-creating-animations/projects/starter/SportFan/ContentView.swift
+++ b/04-creating-animations/projects/starter/SportFan/ContentView.swift
@@ -90,6 +90,7 @@ struct ContentView: View {
}
} label: {
Label("Filter", systemImage: "line.3.horizontal.decrease.circle")
+ .foregroundColor(Constants.orange)
}
}
}
diff --git a/05-manipulating-animations/projects/final/SportFan.xcodeproj/project.pbxproj b/05-manipulating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
index 07e32e6..0c893c8 100644
--- a/05-manipulating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
+++ b/05-manipulating-animations/projects/final/SportFan.xcodeproj/project.pbxproj
@@ -169,7 +169,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -246,24 +245,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/05-manipulating-animations/projects/final/SportFan/ContentView.swift b/05-manipulating-animations/projects/final/SportFan/ContentView.swift
index d4eb848..6d9e29d 100644
--- a/05-manipulating-animations/projects/final/SportFan/ContentView.swift
+++ b/05-manipulating-animations/projects/final/SportFan/ContentView.swift
@@ -88,6 +88,7 @@ struct ContentView: View {
}
} label: {
Label("Filter", systemImage: "line.3.horizontal.decrease.circle")
+ .foregroundColor(Constants.orange)
}
}
}
diff --git a/05-manipulating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj b/05-manipulating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
index 07e32e6..0c893c8 100644
--- a/05-manipulating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
+++ b/05-manipulating-animations/projects/starter/SportFan.xcodeproj/project.pbxproj
@@ -169,7 +169,6 @@
18D775B922AD944300AE281E /* Sources */,
18D775BA22AD944300AE281E /* Frameworks */,
18D775BB22AD944300AE281E /* Resources */,
- 835C287D286248080074D7DE /* ShellScript */,
);
buildRules = (
);
@@ -246,24 +245,6 @@
shellPath = /bin/sh;
shellScript = "PATH=/opt/homebrew/bin:$PATH\nif [ -f ~/com.kodeco.swiftlint.yml ]; then\n if which swiftlint >/dev/null; then\n swiftlint --no-cache --config ~/com.kodeco.swiftlint.yml\n fi\nfi\n";
};
- 835C287D286248080074D7DE /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint lint --config com.kodeco.swiftlint.yml\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
diff --git a/05-manipulating-animations/projects/starter/SportFan/ContentView.swift b/05-manipulating-animations/projects/starter/SportFan/ContentView.swift
index d4eb848..6d9e29d 100644
--- a/05-manipulating-animations/projects/starter/SportFan/ContentView.swift
+++ b/05-manipulating-animations/projects/starter/SportFan/ContentView.swift
@@ -88,6 +88,7 @@ struct ContentView: View {
}
} label: {
Label("Filter", systemImage: "line.3.horizontal.decrease.circle")
+ .foregroundColor(Constants.orange)
}
}
}
diff --git a/10-recreating-a-real-world-animation/projects/final/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme b/10-recreating-a-real-world-animation/projects/final/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme
new file mode 100644
index 0000000..c0021bf
--- /dev/null
+++ b/10-recreating-a-real-world-animation/projects/final/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/10-recreating-a-real-world-animation/projects/starter/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme b/10-recreating-a-real-world-animation/projects/starter/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme
new file mode 100644
index 0000000..c0021bf
--- /dev/null
+++ b/10-recreating-a-real-world-animation/projects/starter/HoneyComb.xcodeproj/xcshareddata/xcschemes/Honeycomb.xcscheme
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+