KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
CardStackView
★ 46
Open GitHub ↗
Inifinite swipeable stacked UIViews.
Download README (.md)
Explore Similar Repositories
CardStackAnimation
:
No description available.
CardStackView
:
卡片交换动画
CardStack
:
A SwiftUI package that lets you implement swipable cards in your project.
cardstack-editor
:
No description available.
SwiftUICardStack
:
Create an easy to peek SwiftUI View to showcase your own data, catalog, images, or anything you'd like.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
CardStackView
?
Download (.md)
# 🎴 CardStackView [](https://swift.org) [](https://github.com/gomfucius/CardStackView/actions) [](https://github.com/Carthage/Carthage) [](http://cocoapods.org/pods/CardStackView) [](http://cocoapods.org/pods/CardStackView) [](http://cocoapods.org/pods/CardStackView) [](https://coveralls.io/github/gomfucius/CardStackView?branch=master)  ## 😃 Example Project To run the example project, clone the repo, open Example/CardStackView.xcodeproj, then build and run the CardStackView_Example target. ## 🖥 Installation CardStackView is available through [Swift Package Manager](https://developer.apple.com/documentation/swift_packages), [Carthage](https://github.com/Carthage/Carthage) and [CocoaPods](https://cocoapods.org). ### Carthage github "gomfucius/CardStackView" == 0.2.1 ### Cocoapods To install, simply add the following line to your Podfile: ```ruby pod "CardStackView" ``` ## 🤔 Implementation ```swift import CardStackView class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() var cardViews = [MyCustomView]() for index in 0...6 { var view = MyCustomView() cardViews.append(view) } let cardStackView = CardStackView(cards: cardViews) self.view.addSubview(cardStackView) // autolayout your cardStackView } } ``` ## 🤓 Author gomfucius, gomfucius@gmail.com ## 📄 License CardStackView is available under the MIT license. See the LICENSE file for more info.