Skip to content

Commit 7b1dd95

Browse files
author
Matteo
authored
Merge pull request #27 from pacu/master
Add Cocoapods support
2 parents fb19f34 + 082c4f1 commit 7b1dd95

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

NavigationStack.podspec

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'NavigationStack'
3+
s.version = '0.1.0'
4+
s.summary = 'An alternative SwiftUI NavigationView.'
5+
6+
s.description = <<-DESC
7+
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation.
8+
DESC
9+
10+
s.homepage = 'https://github.com/biobeats/swiftui-navigation-stack'
11+
12+
s.license = { :type => 'MIT', :file => 'LICENSE' }
13+
s.author = { 'Matteo Puccinelli' => 'matteo.puccinelli@gmail.com' }
14+
s.source = { :git => 'https://github.com/biobeats/swiftui-navigation-stack.git', :tag => s.version.to_s }
15+
16+
17+
s.ios.deployment_target = '13.0'
18+
s.swift_version = '5.0'
19+
s.source_files = 'Sources/NavigationStack/**/*'
20+
21+
end

0 commit comments

Comments
 (0)