-
Notifications
You must be signed in to change notification settings - Fork 2
/
AnchoredBottomSheet.podspec
20 lines (17 loc) · 1.01 KB
/
AnchoredBottomSheet.podspec
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 = 'AnchoredBottomSheet'
s.version = '1.6.3'
s.summary = 'iOS Maps like bottom sheet with configurable anchors and reusable pannable View'
s.description = <<-DESC
This small library tries to achieve this goals:
1. Provide an easy to use interface to create popup like controller with configurable anchor points
2. Provide a reusable view that can be used without a popup for some UI cases (split screen for example). Used that way the BottomSheetView will handle it's own pan gesture
DESC
s.homepage = 'https://github.com/havebeenfitz/AnchoredBottomSheet'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'havebeenfitz' => 'max.kraev@gmail.com' }
s.source = { :git => 'https://github.com/havebeenfitz/anchoredbottomsheet.git', :tag => s.version.to_s }
s.swift_versions = '5.7'
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/AnchoredBottomSheet/**/*'
end