Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Spencer committed May 17, 2021
2 parents 5d9408c + 5264881 commit bec9855
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
23 changes: 23 additions & 0 deletions FetchImageFirebase.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = 'FetchImageFirebase'
s.version = '1.7.1'
s.summary = 'Download images using Firebase and Nuke, display them in SwiftUI.'

s.description = 'FetchImageFirebase makes it easy to download images using Firebase and Nuke, and then display them in SwiftUI apps.'

s.homepage = 'https://github.com/nenosllc/FetchImage'
s.screenshots = 'https://user-images.githubusercontent.com/1567433/110703387-b6c58000-81c1-11eb-806d-8f9d97dc5ecd.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'neons, llc' => '[email protected]' }
s.source = { :git => 'https://github.com/nenosllc/FetchImage.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nenosapps'

s.ios.deployment_target = '14.0'
s.swift_versions = '5.3'

s.source_files = 'Source/**/*'

s.frameworks = 'SwiftUI', 'Foundation'
s.dependency 'Firebase/Storage'
s.dependency 'Nuke'
end
2 changes: 1 addition & 1 deletion Source/ScrollViewPrefetcher.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import SwiftUI

public protocol ScrollViewPrefetcherDelegate: class {
public protocol ScrollViewPrefetcherDelegate: AnyObject {

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

0 comments on commit bec9855

Please sign in to comment.