joomcode / BottomSheet

Bottom Sheet for iOS
https://medium.com/joomtech/bottom-sheet-shall-we-drop-the-formalities-400515255829
MIT License
309 stars 47 forks source link

Install via CocoaPods #4

Closed Lintom closed 1 year ago

Lintom commented 2 years ago

Hello. How install this lib via CocoaPods?

mikhailmaslo commented 2 years ago

Hello! Unfortunately, it's only available through Swift Package Manager

SnailLoveSmile commented 2 years ago

CocoaPods support please...

mparmar-covantex commented 1 year ago

CocoaPods support please...

mikhailmaslo commented 1 year ago

Hey, it's been a while, I see that there are still a lot of developers who uses CocoaPods, so I've just added it

Now, you can add BottomSheet through CocoaPods, just add this line to your Podfile

pod 'BottomSheet', :git => 'https://github.com/joomcode/BottomSheet'

If you need a fixed version, you can use tag:

pod 'BottomSheet', :git => 'https://github.com/joomcode/BottomSheet', :tag => '2.0.2'

I wasn't able to push it to cocoapods registry because 'BottomSheet' has already been taken, so it's not possible to use convenient version syntax, like:

pod 'BottomSheet', '~>2.0'

For now, I'll close this issue, let me know if the method above doesn't work for you

mparmar-covantex commented 1 year ago

Thank you @mikhailmaslo.