Skip to content

Commit

Permalink
Add SwiftUISupportSizing module (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii authored Jul 15, 2024
1 parent 37c48a3 commit c35977f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ let package = Package(
.tvOS(.v13),
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SwiftUISupport",
targets: ["SwiftUISupport"]
)
),
.library(name: "SwiftUISupportSizing", targets: ["SwiftUISupportSizing"])
],
dependencies: [
],
Expand All @@ -26,6 +26,7 @@ let package = Package(
dependencies: [
]
),
.target(name: "SwiftUISupportSizing"),
.testTarget(
name: "SwiftUISupportTests",
dependencies: ["SwiftUISupport"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public struct ResizableModifier: ViewModifier {
}

#if DEBUG

struct BookScalingFrame: View, PreviewProvider {
var body: some View {
Content()
Expand Down

0 comments on commit c35977f

Please sign in to comment.