forked from fermoya/SwiftUIPager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SwiftUIPager.podspec
23 lines (16 loc) · 1.12 KB
/
SwiftUIPager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SwiftUIPager"
s.version = '2.5.1'
s.summary = "Native pager for SwiftUI. Easily to use, easy to customize."
s.description = <<-DESC
This framework provides a pager build on top of SwiftUI native components. Views are recycled, so you do not have to worry about memory issues. It is very easy to use and lets you customize it. For example, you can change the page aspect ratio, the scroll orientation and/or direction, the spacing between pages... It comes with with two pagination effects to make it look even more beautiful.
DESC
s.homepage = "https://medium.com/@fmdr.ct"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "fermoya" => "[email protected]" }
s.platforms = { :ios => "13.0", :osx => "10.15", :watchos => "6.0", :tvos => "13.0" }
s.swift_version = "5.1"
s.source = { :git => "https://github.com/fermoya/SwiftUIPager.git", :tag => "#{s.version}" }
s.source_files = "Sources/SwiftUIPager/**/*.swift"
s.documentation_url = "https://github.com/fermoya/SwiftUIPager/blob/main/README.md"
end