├── .gitignore ├── .travis.yml ├── Example ├── MaterialActionSheetController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MaterialActionSheetController-Example.xcscheme ├── MaterialActionSheetController.xcworkspace │ └── contents.xcworkspacedata ├── MaterialActionSheetController │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── ExampleViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Comment.imageset │ │ │ ├── 1469249772_bubble_chat_comment_message_outline_talk copy.png │ │ │ ├── 1469249772_bubble_chat_comment_message_outline_talk.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Info.imageset │ │ │ ├── 1469250282_circle-info-more-information-detail-outline-stroke copy.png │ │ │ ├── 1469250282_circle-info-more-information-detail-outline-stroke.png │ │ │ └── Contents.json │ │ ├── Light.imageset │ │ │ ├── 1471585197_0015_Light-Bulb.png │ │ │ └── Contents.json │ │ ├── Menu.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_menu_black_24dp.png │ │ │ ├── ic_menu_black_24dp@2x.png │ │ │ └── ic_menu_black_24dp@3x.png │ │ └── Trap.imageset │ │ │ ├── Contents.json │ │ │ └── flat,800x800,075,f-c,0,75,800,331.u3.jpg │ ├── Info.plist │ └── Launch Screen.storyboard ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── MaterialActionSheetController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── MaterialActionSheetController │ │ ├── Info.plist │ │ ├── MaterialActionSheetController-dummy.m │ │ ├── MaterialActionSheetController-prefix.pch │ │ ├── MaterialActionSheetController-umbrella.h │ │ ├── MaterialActionSheetController.modulemap │ │ └── MaterialActionSheetController.xcconfig │ │ ├── Pods-MaterialActionSheetController_Example │ │ ├── Info.plist │ │ ├── Pods-MaterialActionSheetController_Example-acknowledgements.markdown │ │ ├── Pods-MaterialActionSheetController_Example-acknowledgements.plist │ │ ├── Pods-MaterialActionSheetController_Example-dummy.m │ │ ├── Pods-MaterialActionSheetController_Example-frameworks.sh │ │ ├── Pods-MaterialActionSheetController_Example-resources.sh │ │ ├── Pods-MaterialActionSheetController_Example-umbrella.h │ │ ├── Pods-MaterialActionSheetController_Example.debug.xcconfig │ │ ├── Pods-MaterialActionSheetController_Example.modulemap │ │ └── Pods-MaterialActionSheetController_Example.release.xcconfig │ │ └── Pods-MaterialActionSheetController_Tests │ │ ├── Info.plist │ │ ├── Pods-MaterialActionSheetController_Tests-acknowledgements.markdown │ │ ├── Pods-MaterialActionSheetController_Tests-acknowledgements.plist │ │ ├── Pods-MaterialActionSheetController_Tests-dummy.m │ │ ├── Pods-MaterialActionSheetController_Tests-frameworks.sh │ │ ├── Pods-MaterialActionSheetController_Tests-resources.sh │ │ ├── Pods-MaterialActionSheetController_Tests-umbrella.h │ │ ├── Pods-MaterialActionSheetController_Tests.debug.xcconfig │ │ ├── Pods-MaterialActionSheetController_Tests.modulemap │ │ └── Pods-MaterialActionSheetController_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MaterialActionSheetController.podspec ├── MaterialActionSheetController ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── MaterialActionSheetController.swift ├── README.md ├── Screenshots ├── Custom_header_light.png ├── Demo.gif ├── Full_option_dark.png └── Full_option_light.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/MaterialActionSheetController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MaterialActionSheetController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MaterialActionSheetController.xcodeproj/xcshareddata/xcschemes/MaterialActionSheetController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController.xcodeproj/xcshareddata/xcschemes/MaterialActionSheetController-Example.xcscheme -------------------------------------------------------------------------------- /Example/MaterialActionSheetController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/ExampleViewController.swift -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/1469249772_bubble_chat_comment_message_outline_talk copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/1469249772_bubble_chat_comment_message_outline_talk copy.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/1469249772_bubble_chat_comment_message_outline_talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/1469249772_bubble_chat_comment_message_outline_talk.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Comment.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Info.imageset/1469250282_circle-info-more-information-detail-outline-stroke copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Info.imageset/1469250282_circle-info-more-information-detail-outline-stroke copy.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Info.imageset/1469250282_circle-info-more-information-detail-outline-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Info.imageset/1469250282_circle-info-more-information-detail-outline-stroke.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Info.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Light.imageset/1471585197_0015_Light-Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Light.imageset/1471585197_0015_Light-Bulb.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Light.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp@2x.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Menu.imageset/ic_menu_black_24dp@3x.png -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Trap.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Trap.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Images.xcassets/Trap.imageset/flat,800x800,075,f-c,0,75,800,331.u3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Images.xcassets/Trap.imageset/flat,800x800,075,f-c,0,75,800,331.u3.jpg -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Info.plist -------------------------------------------------------------------------------- /Example/MaterialActionSheetController/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/MaterialActionSheetController/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MaterialActionSheetController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Local Podspecs/MaterialActionSheetController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/MaterialActionSheetController/MaterialActionSheetController.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Example/Pods-MaterialActionSheetController_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MaterialActionSheetController_Tests/Pods-MaterialActionSheetController_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/LICENSE -------------------------------------------------------------------------------- /MaterialActionSheetController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/MaterialActionSheetController.podspec -------------------------------------------------------------------------------- /MaterialActionSheetController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MaterialActionSheetController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MaterialActionSheetController/Classes/MaterialActionSheetController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/MaterialActionSheetController/Classes/MaterialActionSheetController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Custom_header_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Screenshots/Custom_header_light.png -------------------------------------------------------------------------------- /Screenshots/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Screenshots/Demo.gif -------------------------------------------------------------------------------- /Screenshots/Full_option_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Screenshots/Full_option_dark.png -------------------------------------------------------------------------------- /Screenshots/Full_option_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntnhon/MaterialActionSheetController/HEAD/Screenshots/Full_option_light.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------