Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import PackageDescription

let package = Package(
name: "ScrollStackController",
platforms: [.iOS(.v11)],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="banner.png" width=300px alt="ScrollStackController" title="ScrollStackController">
</p>

<p align="center"><strong>Easy scrollable complex layouts in UIKit</strong></p>
<p align="center"><strong>Easy scrollable layouts in UIKit</strong></p>

Create complex scrollable layout using UIViewControllers or plain UIViews and simplify your code!

Expand Down Expand Up @@ -38,7 +38,7 @@ If you are using SwiftLocation or any other of my creations please consider the
- [**Become a Sponsor**](https://github.com/sponsors/malcommac)

- [Follow Me](https://github.com/malcommac)
-

<a name="index"/>

## Table of Contents
Expand Down Expand Up @@ -693,7 +693,17 @@ You should look at it in order to implement your own layout, create dynamically
pod 'ScrollStackController'
```

It also supports `Swift Package Maneger` aka SPM.
It also supports `Swift Package Maneger` aka SPM in your `Package.swift`:

```sh
import PackageDescription

let package = Package(name: "YourPackage",
dependencies: [
.Package(url: "https://github.com/malcommac/ScrollStackController.git", majorVersion: 0),
]
)
```

[↑ Back To Top](#index)

Expand Down