├── AnyZoneApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── anil.taskiran.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── aniltaskiran.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AnyZoneApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── MatchScreenIcon.imageset │ │ ├── Contents.json │ │ ├── MatchScreenIcon.png │ │ ├── MatchScreenIcon@2x.png │ │ └── MatchScreenIcon@3x.png │ ├── MessagesIcon.imageset │ │ ├── Contents.json │ │ ├── MessagesIcon.png │ │ ├── MessagesIcon@2x.png │ │ └── MessagesIcon@3x.png │ ├── ProfileIcon.imageset │ │ ├── Contents.json │ │ ├── ProfileIcon.png │ │ ├── ProfileIcon@2x.png │ │ └── ProfileIcon@3x.png │ ├── answerBackground.imageset │ │ ├── Contents.json │ │ ├── answerBackground.png │ │ ├── answerBackground@2x.png │ │ └── answerBackground@3x.png │ ├── anyzone.imageset │ │ ├── Contents.json │ │ ├── anyzone.png │ │ ├── anyzone@2x.png │ │ └── anyzone@3x.png │ ├── boostButtonBackground.imageset │ │ ├── Contents.json │ │ ├── boostButtonBackground.png │ │ ├── boostButtonBackground@2x.png │ │ └── boostButtonBackground@3x.png │ ├── cancel.imageset │ │ ├── Contents.json │ │ └── cancel.png │ ├── cancelButton.imageset │ │ ├── Contents.json │ │ ├── cancelButton.png │ │ ├── cancelButton@2x.png │ │ └── cancelButton@3x.png │ ├── loveButtonBackground.imageset │ │ ├── Contents.json │ │ ├── loveButtonBackground.png │ │ ├── loveButtonBackground@2x.png │ │ └── loveButtonBackground@3x.png │ ├── matchScoreBackground.imageset │ │ ├── Contents.json │ │ ├── matchScoreBackground.png │ │ ├── matchScoreBackground@2x.png │ │ └── matchScoreBackground@3x.png │ ├── matchScoreHeart.imageset │ │ ├── Contents.json │ │ ├── matchScoreHeart.png │ │ ├── matchScoreHeart@2x.png │ │ └── matchScoreHeart@3x.png │ ├── profilePhoto.imageset │ │ ├── Contents.json │ │ ├── profilePhoto.png │ │ ├── profilePhoto@2x.png │ │ └── profilePhoto@3x.png │ ├── questionCircle.imageset │ │ ├── Contents.json │ │ ├── questionCircle.png │ │ ├── questionCircle@2x.png │ │ └── questionCircle@3x.png │ ├── sendIndicator.imageset │ │ ├── Contents.json │ │ ├── sendIndicator.png │ │ ├── sendIndicator@2x.png │ │ └── sendIndicator@3x.png │ ├── standartGame.imageset │ │ ├── Contents.json │ │ ├── standartGame.png │ │ ├── standartGame@2x.png │ │ └── standartGame@3x.png │ └── starButtonBackground.imageset │ │ ├── Contents.json │ │ ├── starButtonBackground.png │ │ ├── starButtonBackground@2x.png │ │ └── starButtonBackground@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BottomSheetViewController.swift ├── BottomSheetViewController.xib ├── Info.plist └── ViewController.swift └── README.md /AnyZoneApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnyZoneApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnyZoneApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AnyZoneApp.xcodeproj/xcuserdata/anil.taskiran.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp.xcodeproj/xcuserdata/anil.taskiran.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnyZoneApp.xcodeproj/xcuserdata/aniltaskiran.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp.xcodeproj/xcuserdata/aniltaskiran.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnyZoneApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/AppDelegate.swift -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MatchScreenIcon.imageset/MatchScreenIcon@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/MessagesIcon.imageset/MessagesIcon@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/ProfileIcon.imageset/ProfileIcon@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/answerBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/answerBackground.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/answerBackground.imageset/answerBackground@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/anyzone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/anyzone.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/anyzone.imageset/anyzone@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/boostButtonBackground.imageset/boostButtonBackground@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancel.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancel.imageset/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancel.imageset/cancel.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancelButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancelButton.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/cancelButton.imageset/cancelButton@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/loveButtonBackground.imageset/loveButtonBackground@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreBackground.imageset/matchScoreBackground@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/matchScoreHeart.imageset/matchScoreHeart@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/profilePhoto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/profilePhoto.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/profilePhoto.imageset/profilePhoto@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/questionCircle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/questionCircle.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/questionCircle.imageset/questionCircle@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/sendIndicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/sendIndicator.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/sendIndicator.imageset/sendIndicator@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/standartGame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/standartGame.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/standartGame.imageset/standartGame@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/Contents.json -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground@2x.png -------------------------------------------------------------------------------- /AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Assets.xcassets/starButtonBackground.imageset/starButtonBackground@3x.png -------------------------------------------------------------------------------- /AnyZoneApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnyZoneApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnyZoneApp/BottomSheetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/BottomSheetViewController.swift -------------------------------------------------------------------------------- /AnyZoneApp/BottomSheetViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/BottomSheetViewController.xib -------------------------------------------------------------------------------- /AnyZoneApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/Info.plist -------------------------------------------------------------------------------- /AnyZoneApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/AnyZoneApp/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniltaskiran/exampleBottomSheet/HEAD/README.md --------------------------------------------------------------------------------