## What did you do? * Added `ScrollStackController` to my project via `Swift Package Manager` * Tried to compile project (Minimum target iOS 14.0) ## What did you expect to happen? Compiles without errors ## What happened instead? Got the following compile error on this line: <img width="1040" alt="Screen Shot 2021-04-01 at 8 41 08 PM" src="https://user-images.githubusercontent.com/2043243/113333009-986b2400-932a-11eb-8f65-a91891a29d8c.png"> ## Proposed Solution Adding a dependency to the `Package.swift` file, in order to enforce the minimum iOS version, `iOS 11.0` ```swift platforms: [.iOS(.v11)], ```