-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathSwipeActions.podspec
22 lines (19 loc) · 1012 Bytes
/
SwipeActions.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SwipeActions'
s.version = '0.3.3'
s.summary = 'Library for creating swipe actions for any SwiftUI View.'
s.description = <<-DESC
Library for creating swipe actions for any SwiftUI View,
similar to Apple's swipeActions(edge:allowsFullSwipe:content:)
that available from iOS 15 and only in List 🤷🏼♂️.
You can use SwipeActions in project targeting iOS 13 with any view (e.g. Text or VStack).
DESC
s.homepage = 'https://github.com/c-villain/SwipeActions'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alexander Kraev' => 'lexkraev@gmail.com' }
s.source = { :git => 'https://github.com/c-villain/SwipeActions.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.macos.deployment_target = '10.15'
s.swift_version = '5'
s.source_files = 'Sources/SwipeActions/**/*'
end