Skip to content

Commit

Permalink
iOSのバージョン指定
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuzukihashi committed Feb 25, 2020
1 parent 494d240 commit 3448c5d
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
1 change: 1 addition & 0 deletions Demo/ContentView.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import SwiftUI
import NeumorphismUI

struct ContentView: View {
var body: some View {
Expand Down
29 changes: 28 additions & 1 deletion NeumorphismUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objectVersion = 52;
objects = {

/* Begin PBXBuildFile section */
Expand All @@ -18,6 +18,7 @@
DAB7EA77240180D0005D4DF5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DAB7EA75240180D0005D4DF5 /* LaunchScreen.storyboard */; };
DAB9BD1E2404217800728215 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = DAB9BD1C2404217800728215 /* README.md */; };
DAB9BD202404218E00728215 /* .gitignore in Resources */ = {isa = PBXBuildFile; fileRef = DAB9BD1F2404218E00728215 /* .gitignore */; };
DABCFF2F24058E80007FE645 /* NeumorphismUI in Frameworks */ = {isa = PBXBuildFile; productRef = DABCFF2E24058E80007FE645 /* NeumorphismUI */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -54,6 +55,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
DABCFF2F24058E80007FE645 /* NeumorphismUI in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -173,6 +175,9 @@
dependencies = (
);
name = NeumorphismUI;
packageProductDependencies = (
DABCFF2E24058E80007FE645 /* NeumorphismUI */,
);
productName = NeumorphismUI;
productReference = DAB7EA1C24004173005D4DF5 /* NeumorphismUI.framework */;
productType = "com.apple.product-type.framework";
Expand Down Expand Up @@ -243,6 +248,9 @@
Base,
);
mainGroup = DAB7EA1224004173005D4DF5;
packageReferences = (
DABCFF2D24058E80007FE645 /* XCRemoteSwiftPackageReference "NeumorphismUI" */,
);
productRefGroup = DAB7EA1D24004173005D4DF5 /* Products */;
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -618,6 +626,25 @@
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
DABCFF2D24058E80007FE645 /* XCRemoteSwiftPackageReference "NeumorphismUI" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/tsuzukihashi/NeumorphismUI.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.0.4;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
DABCFF2E24058E80007FE645 /* NeumorphismUI */ = {
isa = XCSwiftPackageProductDependency;
package = DABCFF2D24058E80007FE645 /* XCRemoteSwiftPackageReference "NeumorphismUI" */;
productName = NeumorphismUI;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = DAB7EA1324004173005D4DF5 /* Project object */;
}

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

1 change: 1 addition & 0 deletions Sources/Color+.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import SwiftUI

@available(iOS 13.0, *)
@available(OSX 10.15, *)
public extension Color {
init(hex: String, opacity: Double = 1.0) {
Expand Down

0 comments on commit 3448c5d

Please sign in to comment.