Skip to content

Commit bec9855

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master'
2 parents 5d9408c + 5264881 commit bec9855

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.DS_Store

6 KB
Binary file not shown.

FetchImageFirebase.podspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'FetchImageFirebase'
3+
s.version = '1.7.1'
4+
s.summary = 'Download images using Firebase and Nuke, display them in SwiftUI.'
5+
6+
s.description = 'FetchImageFirebase makes it easy to download images using Firebase and Nuke, and then display them in SwiftUI apps.'
7+
8+
s.homepage = 'https://github.com/nenosllc/FetchImage'
9+
s.screenshots = 'https://user-images.githubusercontent.com/1567433/110703387-b6c58000-81c1-11eb-806d-8f9d97dc5ecd.png'
10+
s.license = { :type => 'MIT', :file => 'LICENSE' }
11+
s.author = { 'neons, llc' => '[email protected]' }
12+
s.source = { :git => 'https://github.com/nenosllc/FetchImage.git', :tag => s.version.to_s }
13+
s.social_media_url = 'https://twitter.com/nenosapps'
14+
15+
s.ios.deployment_target = '14.0'
16+
s.swift_versions = '5.3'
17+
18+
s.source_files = 'Source/**/*'
19+
20+
s.frameworks = 'SwiftUI', 'Foundation'
21+
s.dependency 'Firebase/Storage'
22+
s.dependency 'Nuke'
23+
end

Source/ScrollViewPrefetcher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import SwiftUI
88

9-
public protocol ScrollViewPrefetcherDelegate: class {
9+
public protocol ScrollViewPrefetcherDelegate: AnyObject {
1010

1111
/// Returns all valid indices for the collection.
1212
func getAllIndicesForPrefetcher(_ prefetcher: ScrollViewPrefetcher) -> Range<Int>

0 commit comments

Comments
 (0)