-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTabPagerX.podspec
More file actions
17 lines (17 loc) · 920 Bytes
/
TabPagerX.podspec
File metadata and controls
17 lines (17 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "TabPagerX"
spec.version = "2.1.0"
spec.summary = "A SwiftUI-based tab pager library for iOS."
spec.description = <<-DESC
TabPagerX is a SwiftUI-based library that provides a customizable tab pager for iOS applications. It supports both fixed and scrollable tab layouts, with extensive styling options for tab buttons and indicators.
DESC
spec.homepage = "https://github.com/camosss/TabPagerX"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "HoSung Kang" => "camosss777@gmail.com" }
spec.platform = :ios, "15.0"
spec.source = { :git => "https://github.com/camosss/TabPagerX.git", :tag => spec.version.to_s }
spec.swift_version = "5.5"
spec.source_files = "Sources/TabPagerX/**/*.{swift}"
spec.frameworks = "SwiftUI"
spec.requires_arc = true
end