Skip to content

Commit

Permalink
Add island
Browse files Browse the repository at this point in the history
  • Loading branch information
aheze committed Oct 20, 2022
1 parent 9441559 commit cc904d8
Show file tree
Hide file tree
Showing 4 changed files with 992 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Example/PrismExample/PrismExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
3C35DD4228E28818006B7A47 /* Logo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C35DD4128E28818006B7A47 /* Logo.swift */; };
3C35DD4428E28827006B7A47 /* Models.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C35DD4328E28827006B7A47 /* Models.swift */; };
3C44857628E34E9C005F7B46 /* Interaction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C44857528E34E9C005F7B46 /* Interaction.swift */; };
3CF38E9F2901CBDC00999C32 /* Island.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF38E9E2901CBDC00999C32 /* Island.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -51,6 +52,7 @@
3C35DD4128E28818006B7A47 /* Logo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Logo.swift; sourceTree = "<group>"; };
3C35DD4328E28827006B7A47 /* Models.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Models.swift; sourceTree = "<group>"; };
3C44857528E34E9C005F7B46 /* Interaction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Interaction.swift; sourceTree = "<group>"; };
3CF38E9E2901CBDC00999C32 /* Island.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Island.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -136,6 +138,7 @@
3C35DD3D28E28800006B7A47 /* Transform.swift */,
3C35DD4128E28818006B7A47 /* Logo.swift */,
3C44857528E34E9C005F7B46 /* Interaction.swift */,
3CF38E9E2901CBDC00999C32 /* Island.swift */,
);
path = Showcase;
sourceTree = "<group>";
Expand Down Expand Up @@ -218,6 +221,7 @@
files = (
3C35DD2928E25D53006B7A47 /* Color.swift in Sources */,
3C44857628E34E9C005F7B46 /* Interaction.swift in Sources */,
3CF38E9F2901CBDC00999C32 /* Island.swift in Sources */,
3C35DD3A28E2846D006B7A47 /* Slime.swift in Sources */,
3C35DD4028E28804006B7A47 /* Basic.swift in Sources */,
3C35DD3528E27FD5006B7A47 /* Image.swift in Sources */,
Expand Down
5 changes: 5 additions & 0 deletions Example/PrismExample/PrismExample/Gallery/GalleryView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ enum ExampleKind: String {
case transform = "Transform"
case logo = "Logo"
case interaction = "Interaction"
case island = "Island"

case color = "Color"
case gradient = "Gradient"
Expand All @@ -41,6 +42,8 @@ struct GalleryView: View {
LogoGalleryView(model: model)

InteractionGalleryView(model: model)

IslandGalleryView(model: model)
} header: {
Text("Showcase")
.foregroundColor(UIColor.secondaryLabel.color)
Expand Down Expand Up @@ -77,6 +80,8 @@ struct GalleryView: View {
LogoDetailView()
case .interaction:
InteractionDetailView()
case .island:
IslandDetailView()
case .color:
ColorDetailView()
case .gradient:
Expand Down
Loading

0 comments on commit cc904d8

Please sign in to comment.