Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
stream-ci-bot committed Jul 11, 2024
1 parent 2578565 commit d2bf9a6
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions docusaurus/docs/iOS/basics/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ The SDK tries to keep the list of external dependencies to a minimum, these are
- [Gifu](https://github.com/kaishin/Gifu) for high performance gif rendering
- [StreamChat]((https://getstream.io/chat/docs/ios-swift/?language=swift)) the low-level client for the Stream Chat API

#### StreamChat

- [Starscream](https://github.com/daltoniam/Starscream) to handle WebSocket connections (used only on iOS 11 and 12)

:::note
Starting **4.6.0**, and in order to improve the developer experience, dependencies are hidden inside our libraries.
:::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: ChatChannelListItemViewSwiftUIView
---

``` swift
@available(iOS 13.0, *)
/// Protocol of `_ChatChannelListItemView` wrapper for use in SwiftUI.
public protocol ChatChannelListItemViewSwiftUIView: View
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: ChatChannelList
---

``` swift
@available(iOS 13.0, *)
/// A `UIViewControllerRepresentable` subclass which wraps `ChatChannelListVC` and shows list of channels.
public typealias ChatChannelList = SwiftUIViewControllerRepresentable<ChatChannelListVC>
```
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: ChatChannelUnreadCountViewSwiftUIView
---

``` swift
@available(iOS 13.0, *)
/// Protocol of `_ChatChannelUnreadCountView` wrapper for use in SwiftUI.
public protocol ChatChannelUnreadCountViewSwiftUIView: View
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: ChatMessageContentViewSwiftUIView
---

``` swift
@available(iOS 13.0, *)
/// Protocol of `_ChatMessageContentView` wrapper for use in SwiftUI.
public protocol ChatMessageContentViewSwiftUIView: View
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: ChatChannelAvatarViewSwiftUIView
---

``` swift
@available(iOS 13.0, *)
/// Protocol of `_ChatChannelAvatarView` wrapper for use in SwiftUI.
public protocol ChatChannelAvatarViewSwiftUIView: View
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: QuotedChatMessageViewSwiftUIView
---

``` swift
@available(iOS 13.0, *)
/// Protocol of `QuotedChatMessageView` wrapper for use in SwiftUI.
public protocol QuotedChatMessageViewSwiftUIView: View
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: SwiftUIViewControllerRepresentable
---

``` swift
@available(iOS 13.0, *)
/// A concrete type that wraps a view conforming to `SwiftUIRepresentable` and enables using it in SwiftUI via `UIViewControllerRepresentable`
public struct SwiftUIViewControllerRepresentable<
ViewController: UIViewController &
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: SwiftUIViewRepresentable
---

``` swift
@available(iOS 13.0, *)
/// A concrete type that wraps a view conforming to `SwiftUIRepresentable` and enables using it in SwiftUI via `UIViewRepresentable`
public struct SwiftUIViewRepresentable<View: UIView & SwiftUIRepresentable>: UIViewRepresentable
```
Expand Down

0 comments on commit d2bf9a6

Please sign in to comment.