Skip to content

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Jul 15, 2024
1 parent c35977f commit 2072bfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,21 @@ let package = Package(
name: "SwiftUISupport",
targets: ["SwiftUISupport"]
),
.library(name: "SwiftUISupportSizing", targets: ["SwiftUISupportSizing"])
.library(name: "SwiftUISupportSizing", targets: ["SwiftUISupportSizing"]),
.library(name: "SwiftUISupportGeometryEffect", targets: ["SwiftUISupportGeometryEffect"])
],
dependencies: [
],
targets: [
.target(
name: "SwiftUISupport",
dependencies: [
"SwiftUISupportSizing",
"SwiftUISupportGeometryEffect"
]
),
.target(name: "SwiftUISupportSizing"),
.target(name: "SwiftUISupportGeometryEffect"),
.testTarget(
name: "SwiftUISupportTests",
dependencies: ["SwiftUISupport"]
Expand Down
1 change: 1 addition & 0 deletions Sources/SwiftUISupport/Components/StyleModifier.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

import SwiftUI
import SwiftUISupportGeometryEffect

public struct StyleModifier: ViewModifier {

Expand Down

0 comments on commit 2072bfb

Please sign in to comment.