File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/StreamChatSwiftUI/ChatChannel/Gallery Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import StreamChat
66import SwiftUI
77
88/// View used for displaying image attachments in a gallery.
9- struct GalleryView : View {
9+ public struct GalleryView : View {
1010
1111 @Environment ( \. presentationMode) var presentationMode
1212
@@ -21,7 +21,7 @@ struct GalleryView: View {
2121 @State private var loadedImages = [ Int: UIImage] ( )
2222 @State private var gridShown = false
2323
24- init (
24+ public init (
2525 imageAttachments: [ ChatMessageImageAttachment ] ,
2626 author: ChatUser ,
2727 isShown: Binding < Bool > ,
@@ -33,7 +33,7 @@ struct GalleryView: View {
3333 _selected = State ( initialValue: selected)
3434 }
3535
36- var body : some View {
36+ public var body : some View {
3737 GeometryReader { reader in
3838 VStack {
3939 GalleryHeaderView (
You can’t perform that action at this time.
0 commit comments