Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge #63

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
13 changes: 8 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ let package = Package(
targets: ["ExyteChat"]),
],
dependencies: [
.package(
url: "https://github.com/siteline/swiftui-introspect",
from: "1.0.0"
),

.package(url: "https://github.com/moyoteg/SwiftUI-Introspect", branch: "master"),
// .package(
// url: "https://github.com/siteline/swiftui-introspect",
// from: "1.1.3"
// ),
.package(
url: "https://github.com/exyte/MediaPicker.git",
from: "2.0.0"
Expand All @@ -35,7 +37,8 @@ let package = Package(
.target(
name: "ExyteChat",
dependencies: [
.product(name: "SwiftUIIntrospect", package: "swiftui-introspect"),
"SwiftUI-Introspect"
// .product(name: "SwiftUI-Introspect", package: "swiftui-introspect"),
.product(name: "ExyteMediaPicker", package: "MediaPicker"),
.product(name: "FloatingButton", package: "FloatingButton"),
.product(name: "ActivityIndicatorView", package: "ActivityIndicatorView")
Expand Down