├── .gitignore ├── HalfScreenPresentation.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── HalfScreenPresentation ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomModalViewController.swift ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── img.png ├── readme.md └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/.gitignore -------------------------------------------------------------------------------- /HalfScreenPresentation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HalfScreenPresentation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HalfScreenPresentation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/AppDelegate.swift -------------------------------------------------------------------------------- /HalfScreenPresentation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /HalfScreenPresentation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HalfScreenPresentation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HalfScreenPresentation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HalfScreenPresentation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HalfScreenPresentation/CustomModalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/CustomModalViewController.swift -------------------------------------------------------------------------------- /HalfScreenPresentation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/Info.plist -------------------------------------------------------------------------------- /HalfScreenPresentation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/SceneDelegate.swift -------------------------------------------------------------------------------- /HalfScreenPresentation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/HalfScreenPresentation/ViewController.swift -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/img.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhafiz/CustomModalVC/HEAD/screenshot.gif --------------------------------------------------------------------------------