-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCenteredScrollView.podspec
More file actions
20 lines (18 loc) · 902 Bytes
/
CenteredScrollView.podspec
File metadata and controls
20 lines (18 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'CenteredScrollView'
s.version = '1.0.0'
s.summary = 'SwiftUI scroll view that centeres its content when it fits on screen.'
s.description = <<-DESC
SwiftUI scroll view that centeres its content when it fits on screen.
It uses VStack internally to hold content.
DESC
s.swift_version = '5.3'
s.homepage = 'https://github.com/agruchala/CenteredScrollView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Artur Gruchała' => 'gruchala.a@gmail.com' }
s.source = { :git => 'https://github.com/agruchala/CenteredScrollView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/GruchalaArtur'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '11.0'
s.source_files = 'CenteredScrollView/Classes/**/*'
end