Skip to content

Commit 66a74b6

Browse files
authored
Heart Beat using Neumorphic Design
1 parent 27a77b5 commit 66a74b6

21 files changed

Lines changed: 884 additions & 0 deletions

File tree

Lines changed: 349 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,349 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 50;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
1D268C262466F741004EF542 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D268C252466F741004EF542 /* AppDelegate.swift */; };
11+
1D268C282466F741004EF542 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D268C272466F741004EF542 /* SceneDelegate.swift */; };
12+
1D268C2A2466F741004EF542 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D268C292466F741004EF542 /* ContentView.swift */; };
13+
1D268C2C2466F743004EF542 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1D268C2B2466F743004EF542 /* Assets.xcassets */; };
14+
1D268C2F2466F743004EF542 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1D268C2E2466F743004EF542 /* Preview Assets.xcassets */; };
15+
1D268C322466F743004EF542 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1D268C302466F743004EF542 /* LaunchScreen.storyboard */; };
16+
/* End PBXBuildFile section */
17+
18+
/* Begin PBXFileReference section */
19+
1D268C222466F741004EF542 /* NeumorphicHeart.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NeumorphicHeart.app; sourceTree = BUILT_PRODUCTS_DIR; };
20+
1D268C252466F741004EF542 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
21+
1D268C272466F741004EF542 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
22+
1D268C292466F741004EF542 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
23+
1D268C2B2466F743004EF542 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
24+
1D268C2E2466F743004EF542 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
25+
1D268C312466F743004EF542 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
26+
1D268C332466F743004EF542 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
27+
/* End PBXFileReference section */
28+
29+
/* Begin PBXFrameworksBuildPhase section */
30+
1D268C1F2466F741004EF542 /* Frameworks */ = {
31+
isa = PBXFrameworksBuildPhase;
32+
buildActionMask = 2147483647;
33+
files = (
34+
);
35+
runOnlyForDeploymentPostprocessing = 0;
36+
};
37+
/* End PBXFrameworksBuildPhase section */
38+
39+
/* Begin PBXGroup section */
40+
1D268C192466F741004EF542 = {
41+
isa = PBXGroup;
42+
children = (
43+
1D268C242466F741004EF542 /* NeumorphicHeart */,
44+
1D268C232466F741004EF542 /* Products */,
45+
);
46+
sourceTree = "<group>";
47+
};
48+
1D268C232466F741004EF542 /* Products */ = {
49+
isa = PBXGroup;
50+
children = (
51+
1D268C222466F741004EF542 /* NeumorphicHeart.app */,
52+
);
53+
name = Products;
54+
sourceTree = "<group>";
55+
};
56+
1D268C242466F741004EF542 /* NeumorphicHeart */ = {
57+
isa = PBXGroup;
58+
children = (
59+
1D268C252466F741004EF542 /* AppDelegate.swift */,
60+
1D268C272466F741004EF542 /* SceneDelegate.swift */,
61+
1D268C292466F741004EF542 /* ContentView.swift */,
62+
1D268C2B2466F743004EF542 /* Assets.xcassets */,
63+
1D268C302466F743004EF542 /* LaunchScreen.storyboard */,
64+
1D268C332466F743004EF542 /* Info.plist */,
65+
1D268C2D2466F743004EF542 /* Preview Content */,
66+
);
67+
path = NeumorphicHeart;
68+
sourceTree = "<group>";
69+
};
70+
1D268C2D2466F743004EF542 /* Preview Content */ = {
71+
isa = PBXGroup;
72+
children = (
73+
1D268C2E2466F743004EF542 /* Preview Assets.xcassets */,
74+
);
75+
path = "Preview Content";
76+
sourceTree = "<group>";
77+
};
78+
/* End PBXGroup section */
79+
80+
/* Begin PBXNativeTarget section */
81+
1D268C212466F741004EF542 /* NeumorphicHeart */ = {
82+
isa = PBXNativeTarget;
83+
buildConfigurationList = 1D268C362466F743004EF542 /* Build configuration list for PBXNativeTarget "NeumorphicHeart" */;
84+
buildPhases = (
85+
1D268C1E2466F741004EF542 /* Sources */,
86+
1D268C1F2466F741004EF542 /* Frameworks */,
87+
1D268C202466F741004EF542 /* Resources */,
88+
);
89+
buildRules = (
90+
);
91+
dependencies = (
92+
);
93+
name = NeumorphicHeart;
94+
productName = NeumorphicDesignInSwiftUI;
95+
productReference = 1D268C222466F741004EF542 /* NeumorphicHeart.app */;
96+
productType = "com.apple.product-type.application";
97+
};
98+
/* End PBXNativeTarget section */
99+
100+
/* Begin PBXProject section */
101+
1D268C1A2466F741004EF542 /* Project object */ = {
102+
isa = PBXProject;
103+
attributes = {
104+
LastSwiftUpdateCheck = 1140;
105+
LastUpgradeCheck = 1140;
106+
ORGANIZATIONNAME = "Ramill Ibragimov";
107+
TargetAttributes = {
108+
1D268C212466F741004EF542 = {
109+
CreatedOnToolsVersion = 11.4.1;
110+
};
111+
};
112+
};
113+
buildConfigurationList = 1D268C1D2466F741004EF542 /* Build configuration list for PBXProject "NeumorphicHeart" */;
114+
compatibilityVersion = "Xcode 9.3";
115+
developmentRegion = en;
116+
hasScannedForEncodings = 0;
117+
knownRegions = (
118+
en,
119+
Base,
120+
);
121+
mainGroup = 1D268C192466F741004EF542;
122+
productRefGroup = 1D268C232466F741004EF542 /* Products */;
123+
projectDirPath = "";
124+
projectRoot = "";
125+
targets = (
126+
1D268C212466F741004EF542 /* NeumorphicHeart */,
127+
);
128+
};
129+
/* End PBXProject section */
130+
131+
/* Begin PBXResourcesBuildPhase section */
132+
1D268C202466F741004EF542 /* Resources */ = {
133+
isa = PBXResourcesBuildPhase;
134+
buildActionMask = 2147483647;
135+
files = (
136+
1D268C322466F743004EF542 /* LaunchScreen.storyboard in Resources */,
137+
1D268C2F2466F743004EF542 /* Preview Assets.xcassets in Resources */,
138+
1D268C2C2466F743004EF542 /* Assets.xcassets in Resources */,
139+
);
140+
runOnlyForDeploymentPostprocessing = 0;
141+
};
142+
/* End PBXResourcesBuildPhase section */
143+
144+
/* Begin PBXSourcesBuildPhase section */
145+
1D268C1E2466F741004EF542 /* Sources */ = {
146+
isa = PBXSourcesBuildPhase;
147+
buildActionMask = 2147483647;
148+
files = (
149+
1D268C262466F741004EF542 /* AppDelegate.swift in Sources */,
150+
1D268C282466F741004EF542 /* SceneDelegate.swift in Sources */,
151+
1D268C2A2466F741004EF542 /* ContentView.swift in Sources */,
152+
);
153+
runOnlyForDeploymentPostprocessing = 0;
154+
};
155+
/* End PBXSourcesBuildPhase section */
156+
157+
/* Begin PBXVariantGroup section */
158+
1D268C302466F743004EF542 /* LaunchScreen.storyboard */ = {
159+
isa = PBXVariantGroup;
160+
children = (
161+
1D268C312466F743004EF542 /* Base */,
162+
);
163+
name = LaunchScreen.storyboard;
164+
sourceTree = "<group>";
165+
};
166+
/* End PBXVariantGroup section */
167+
168+
/* Begin XCBuildConfiguration section */
169+
1D268C342466F743004EF542 /* Debug */ = {
170+
isa = XCBuildConfiguration;
171+
buildSettings = {
172+
ALWAYS_SEARCH_USER_PATHS = NO;
173+
CLANG_ANALYZER_NONNULL = YES;
174+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
175+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
176+
CLANG_CXX_LIBRARY = "libc++";
177+
CLANG_ENABLE_MODULES = YES;
178+
CLANG_ENABLE_OBJC_ARC = YES;
179+
CLANG_ENABLE_OBJC_WEAK = YES;
180+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
181+
CLANG_WARN_BOOL_CONVERSION = YES;
182+
CLANG_WARN_COMMA = YES;
183+
CLANG_WARN_CONSTANT_CONVERSION = YES;
184+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
185+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
186+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
187+
CLANG_WARN_EMPTY_BODY = YES;
188+
CLANG_WARN_ENUM_CONVERSION = YES;
189+
CLANG_WARN_INFINITE_RECURSION = YES;
190+
CLANG_WARN_INT_CONVERSION = YES;
191+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
192+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
193+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
194+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
195+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
196+
CLANG_WARN_STRICT_PROTOTYPES = YES;
197+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
198+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
199+
CLANG_WARN_UNREACHABLE_CODE = YES;
200+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
201+
COPY_PHASE_STRIP = NO;
202+
DEBUG_INFORMATION_FORMAT = dwarf;
203+
ENABLE_STRICT_OBJC_MSGSEND = YES;
204+
ENABLE_TESTABILITY = YES;
205+
GCC_C_LANGUAGE_STANDARD = gnu11;
206+
GCC_DYNAMIC_NO_PIC = NO;
207+
GCC_NO_COMMON_BLOCKS = YES;
208+
GCC_OPTIMIZATION_LEVEL = 0;
209+
GCC_PREPROCESSOR_DEFINITIONS = (
210+
"DEBUG=1",
211+
"$(inherited)",
212+
);
213+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
214+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
215+
GCC_WARN_UNDECLARED_SELECTOR = YES;
216+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
217+
GCC_WARN_UNUSED_FUNCTION = YES;
218+
GCC_WARN_UNUSED_VARIABLE = YES;
219+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
220+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
221+
MTL_FAST_MATH = YES;
222+
ONLY_ACTIVE_ARCH = YES;
223+
SDKROOT = iphoneos;
224+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
225+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
226+
};
227+
name = Debug;
228+
};
229+
1D268C352466F743004EF542 /* Release */ = {
230+
isa = XCBuildConfiguration;
231+
buildSettings = {
232+
ALWAYS_SEARCH_USER_PATHS = NO;
233+
CLANG_ANALYZER_NONNULL = YES;
234+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
235+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
236+
CLANG_CXX_LIBRARY = "libc++";
237+
CLANG_ENABLE_MODULES = YES;
238+
CLANG_ENABLE_OBJC_ARC = YES;
239+
CLANG_ENABLE_OBJC_WEAK = YES;
240+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
241+
CLANG_WARN_BOOL_CONVERSION = YES;
242+
CLANG_WARN_COMMA = YES;
243+
CLANG_WARN_CONSTANT_CONVERSION = YES;
244+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
245+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
246+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
247+
CLANG_WARN_EMPTY_BODY = YES;
248+
CLANG_WARN_ENUM_CONVERSION = YES;
249+
CLANG_WARN_INFINITE_RECURSION = YES;
250+
CLANG_WARN_INT_CONVERSION = YES;
251+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
252+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
253+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
254+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
255+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
256+
CLANG_WARN_STRICT_PROTOTYPES = YES;
257+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
258+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
259+
CLANG_WARN_UNREACHABLE_CODE = YES;
260+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
261+
COPY_PHASE_STRIP = NO;
262+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
263+
ENABLE_NS_ASSERTIONS = NO;
264+
ENABLE_STRICT_OBJC_MSGSEND = YES;
265+
GCC_C_LANGUAGE_STANDARD = gnu11;
266+
GCC_NO_COMMON_BLOCKS = YES;
267+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
268+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
269+
GCC_WARN_UNDECLARED_SELECTOR = YES;
270+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
271+
GCC_WARN_UNUSED_FUNCTION = YES;
272+
GCC_WARN_UNUSED_VARIABLE = YES;
273+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
274+
MTL_ENABLE_DEBUG_INFO = NO;
275+
MTL_FAST_MATH = YES;
276+
SDKROOT = iphoneos;
277+
SWIFT_COMPILATION_MODE = wholemodule;
278+
SWIFT_OPTIMIZATION_LEVEL = "-O";
279+
VALIDATE_PRODUCT = YES;
280+
};
281+
name = Release;
282+
};
283+
1D268C372466F743004EF542 /* Debug */ = {
284+
isa = XCBuildConfiguration;
285+
buildSettings = {
286+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
287+
CODE_SIGN_STYLE = Automatic;
288+
DEVELOPMENT_ASSET_PATHS = "\"NeumorphicHeart/Preview Content\"";
289+
DEVELOPMENT_TEAM = 493S77954X;
290+
ENABLE_PREVIEWS = YES;
291+
INFOPLIST_FILE = "$(SRCROOT)/NeumorphicHeart/Info.plist";
292+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
293+
LD_RUNPATH_SEARCH_PATHS = (
294+
"$(inherited)",
295+
"@executable_path/Frameworks",
296+
);
297+
PRODUCT_BUNDLE_IDENTIFIER = com.neumorphicHeart.com;
298+
PRODUCT_NAME = "$(TARGET_NAME)";
299+
SWIFT_VERSION = 5.0;
300+
TARGETED_DEVICE_FAMILY = "1,2";
301+
};
302+
name = Debug;
303+
};
304+
1D268C382466F743004EF542 /* Release */ = {
305+
isa = XCBuildConfiguration;
306+
buildSettings = {
307+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
308+
CODE_SIGN_STYLE = Automatic;
309+
DEVELOPMENT_ASSET_PATHS = "\"NeumorphicHeart/Preview Content\"";
310+
DEVELOPMENT_TEAM = 493S77954X;
311+
ENABLE_PREVIEWS = YES;
312+
INFOPLIST_FILE = "$(SRCROOT)/NeumorphicHeart/Info.plist";
313+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
314+
LD_RUNPATH_SEARCH_PATHS = (
315+
"$(inherited)",
316+
"@executable_path/Frameworks",
317+
);
318+
PRODUCT_BUNDLE_IDENTIFIER = com.neumorphicHeart.com;
319+
PRODUCT_NAME = "$(TARGET_NAME)";
320+
SWIFT_VERSION = 5.0;
321+
TARGETED_DEVICE_FAMILY = "1,2";
322+
};
323+
name = Release;
324+
};
325+
/* End XCBuildConfiguration section */
326+
327+
/* Begin XCConfigurationList section */
328+
1D268C1D2466F741004EF542 /* Build configuration list for PBXProject "NeumorphicHeart" */ = {
329+
isa = XCConfigurationList;
330+
buildConfigurations = (
331+
1D268C342466F743004EF542 /* Debug */,
332+
1D268C352466F743004EF542 /* Release */,
333+
);
334+
defaultConfigurationIsVisible = 0;
335+
defaultConfigurationName = Release;
336+
};
337+
1D268C362466F743004EF542 /* Build configuration list for PBXNativeTarget "NeumorphicHeart" */ = {
338+
isa = XCConfigurationList;
339+
buildConfigurations = (
340+
1D268C372466F743004EF542 /* Debug */,
341+
1D268C382466F743004EF542 /* Release */,
342+
);
343+
defaultConfigurationIsVisible = 0;
344+
defaultConfigurationName = Release;
345+
};
346+
/* End XCConfigurationList section */
347+
};
348+
rootObject = 1D268C1A2466F741004EF542 /* Project object */;
349+
}

NeumorphicHeart/NeumorphicHeart.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
uuid = "9280FE15-44F7-416E-912D-BCC80DD96612"
4+
type = "1"
5+
version = "2.0">
6+
<Breakpoints>
7+
<BreakpointProxy
8+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
9+
<BreakpointContent
10+
uuid = "C3F09A52-F75A-44A9-ACE2-65ED43E29630"
11+
shouldBeEnabled = "Yes"
12+
ignoreCount = "0"
13+
continueAfterRunningActions = "No"
14+
filePath = "NeumorphicHeart/EmitterView.swift"
15+
startingColumnNumber = "9223372036854775807"
16+
endingColumnNumber = "9223372036854775807"
17+
startingLineNumber = "23"
18+
endingLineNumber = "23"
19+
landmarkName = "makeUIView(context:)"
20+
landmarkType = "7">
21+
</BreakpointContent>
22+
</BreakpointProxy>
23+
</Breakpoints>
24+
</Bucket>

0 commit comments

Comments
 (0)