Skip to content

Commit ffd439b

Browse files
committed
Initial commit.
1 parent 03b74bd commit ffd439b

File tree

23 files changed

+1172
-0
lines changed

23 files changed

+1172
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/

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

Demo Project/ResponsiveTextFieldDemo.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>

0 commit comments

Comments
 (0)