forked from michzio/ModalPresenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModalPresenter.podspec
34 lines (25 loc) · 1.06 KB
/
ModalPresenter.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
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = "ModalPresenter"
s.version = "0.1.0"
s.summary = "SwiftUI modal presentation missing view modifier."
s.swift_version = '5.6'
s.platform = :ios
s.ios.deployment_target = '13.0'
s.description = <<-DESC
SwiftUI modal presentation missing view modifier. That enables similar to .sheet() or .fullScreenCover()
presnt views modally over full screen using different presentation contexts, styles and transitions.
It uses UIKit modal presentation tools underneath. You can just add presentModal(isPresented: ...) or presentModal(item: ...)
to use it in your app
DESC
s.homepage = "https://github.com/michzio/ModalPresenter"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Michał Ziobro" => "[email protected]" }
s.source = { :git => "https://github.com/michzio/ModalPresenter.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.exclude_files = [
"Example/**/*.swift",
"Tests/**/*.swift"
]
s.framework = "UIKit"
s.dependency 'Introspect', '~> 0.1'
end