Skip to content

Commit 2820945

Browse files
authored
Remove swiftui-support (#17)
1 parent adfe78a commit 2820945

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Package.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ let package = Package(
1414
)
1515
],
1616
dependencies: [
17-
.package(url: "https://github.com/FluidGroup/swiftui-support", from: "0.4.1"),
1817
],
1918
targets: [
2019
// Targets are the basic building blocks of a package, defining a module or a test suite.
2120
// Targets can depend on other targets in this package and products from dependencies.
2221
.target(
2322
name: "DynamicList",
2423
dependencies: [
25-
.product(name: "SwiftUISupport", package: "swiftui-support")
2624
]
2725
),
2826
.testTarget(

Sources/DynamicList/swift_dynamic_list.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import SwiftUI
2-
import SwiftUISupport
32
import UIKit
43

54
#if DEBUG
5+
6+
// Experimental
67
public struct CustomList<Content: View>: View {
78

89
let tree: _VariadicView.Tree<VariadicViewProxy, Content>

0 commit comments

Comments
 (0)