forked from apptekstudios/ASCollectionView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASCollectionView-SwiftUI.podspec
26 lines (22 loc) · 1.18 KB
/
ASCollectionView-SwiftUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'ASCollectionView-SwiftUI'
s.version = '1.7.1'
s.summary = 'A SwiftUI collection view with support for custom layouts, preloading, and more. '
s.description = <<-DESC
A SwiftUI implementation of UICollectionView & UITableView. Here's some of its useful features:
- supports preloading and onAppear/onDisappear.
- supports cell selection, with automatic support for SwiftUI editing mode.
- supports autosizing of cells.
- supports the new UICollectionViewCompositionalLayout, and any other UICollectionViewLayout
- supports removing separators for ASTableView.
- supports directly using FetchedResults as a data source
DESC
s.homepage = 'https://github.com/apptekstudios/ASCollectionView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'apptekstudios' => '' }
s.source = { :git => 'https://github.com/apptekstudios/ASCollectionView.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_versions = '5.2'
s.source_files = 'Sources/ASCollectionView/**/*'
s.dependency 'DifferenceKit', '~> 1.1'
end