ASBottomSheet 1.1.4

ASBottomSheet 1.1.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2019
SPMSupports SPM

Maintained by Adil Soomro.




  • By
  • AdilSoomro

ASBottomSheet

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Screenshot

enter image description here

Installation

ASBottomSheet is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ASBottomSheet"

Then import module to your view controller, make a sheet and add items to the sheet and you are done.

let first: ASBottomSheetItem = ASBottomSheetItem(withTitle: "Add Image", withIcon: UIImage.init(named: "image_icon")!)
first.action = {
    print("First Action: Add image");
};
let second = ASBottomSheetItem(withTitle: "Add Sticker", withIcon: UIImage.init(named: "sticker_icon")!)
second.action = {
    print("Second Action: Add Sticker");
};
let third = ASBottomSheetItem(withTitle: "Add Image", withIcon: UIImage.init(named: "image_icon")!)
third.action = {
    print("Third Action: Add image");
};

let bottomSheet = ASBottomSheet.menu(withOptions: [first, second, third])
bottomSheet.showMenu(fromViewController: self)

Author

AdilSoomro

Website: BooleanBites

Twitter: adil_soomro

License

ASBottomSheet is available under the MIT license. See the LICENSE file for more info.