Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasudev/axistabview
A library that allows you to easily create various styles of tab views. Supports iOS and macOS.
https://github.com/jasudev/axistabview
ios macos swift swiftui swiftui-components swiftui-library swiftui-tabbar swiftui-tabview tabbar tabview tabview-swiftui
Last synced: about 4 hours ago
JSON representation
A library that allows you to easily create various styles of tab views. Supports iOS and macOS.
- Host: GitHub
- URL: https://github.com/jasudev/axistabview
- Owner: jasudev
- License: mit
- Created: 2022-03-12T15:01:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T08:40:32.000Z (over 2 years ago)
- Last Synced: 2023-11-07T16:26:16.841Z (about 1 year ago)
- Topics: ios, macos, swift, swiftui, swiftui-components, swiftui-library, swiftui-tabbar, swiftui-tabview, tabbar, tabview, tabview-swiftui
- Language: Swift
- Homepage:
- Size: 1.19 MB
- Stars: 193
- Watchers: 4
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **AxisTabView for SwiftUI**
A library that allows you to easily create various styles of tab views. Supports iOS and macOS.[![Platforms](https://img.shields.io/badge/Platforms-iOS%20%7C%20macOS-blue?style=flat-square)](https://developer.apple.com/macOS)
[![iOS](https://img.shields.io/badge/iOS-14.0-blue.svg)](https://developer.apple.com/iOS)
[![macOS](https://img.shields.io/badge/macOS-11.0-blue.svg)](https://developer.apple.com/macOS)
[![instagram](https://img.shields.io/badge/[email protected]?style=flat-square)](https://www.instagram.com/dev.fabula)
[![SPM](https://img.shields.io/badge/SPM-compatible-red?style=flat-square)](https://developer.apple.com/documentation/swift_packages/package/)
[![MIT](https://img.shields.io/badge/licenses-MIT-red.svg)](https://opensource.org/licenses/MIT)## Screenshot
|Style|Style|Style|
|:---:|:---:|:---:|
||||
||||https://user-images.githubusercontent.com/1617304/158022934-d50b44be-a18f-4dbe-a079-09256823bba0.mov
https://user-images.githubusercontent.com/1617304/158058477-eed42ea0-3b2d-496f-b978-f2f6628a3801.mov
## Example
[https://fabulaapp.page.link/233](https://fabulaapp.page.link/233)## Usages
```swift
AxisTabView(selection: $selection, constant: ATConstant(axisMode: .bottom)) { state in
ATBasicStyle(state, color: .blue)
} content: {
Text("Tab 1")
.tabItem(tag: 0, normal: {
Text("Tab 1")
}, select: {
Text("Tab 1")
.bold()
.foregroundColor(Color.yellow)
})
Text("Tab 2")
.tabItem(tag: 1, normal: {
Text("Tab 2")
}, select: {
Text("Tab 2")
.bold()
.foregroundColor(Color.yellow)
})
Text("Tab 3")
.tabItem(tag: 2, normal: {
Text("Tab 3")
}, select: {
Text("Tab 3")
.bold()
.foregroundColor(Color.yellow)
})
} onTapReceive: { selectionTap in
/// Imperative syntax
print("---------------------")
print("Selection : ", selectionTap)
print("Already selected : ", self.selection == selectionTap)
}
```
## Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. Once you have your Swift package set up, adding AxisTabView as a dependency is as easy as adding it to the dependencies value of your Package.swift.```swift
dependencies: [
.package(url: "https://github.com/jasudev/AxisTabView.git", .branch("main"))
]
```## Contact
instagram : [@dev.fabula](https://www.instagram.com/dev.fabula)
email : [[email protected]](mailto:[email protected])## License
AxisTabView is available under the MIT license. See the [LICENSE](LICENSE) file for more info.