├── .gitignore ├── .swift-version ├── Example ├── LICENSE ├── NotchToolkit-Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── NotchToolkit-Example.xcscheme │ │ └── NotchToolkit.xcscheme ├── NotchToolkit-Example.xcworkspace │ └── contents.xcworkspacedata ├── NotchToolkit-Example │ ├── AppDelegate.swift │ ├── Assets │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── pikachusquare.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pikachusquare.png │ │ │ └── spongebob.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── spongebob.png │ │ └── tst_img.JPG │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CornerOvalViewController.swift │ ├── Info.plist │ ├── NotchImageViewController.swift │ └── ViewController.swift ├── NotchToolkit-ExampleTests │ ├── Info.plist │ └── NotchToolkit_ExampleTests.swift ├── NotchToolkit │ ├── Cells │ │ ├── NotchToolCell.swift │ │ └── NotchToolNameIconCell.swift │ ├── Classes │ │ ├── NotchBar.swift │ │ ├── NotchImageView.swift │ │ └── NotchToolbar.swift │ ├── Enumerations │ │ ├── CurveSettings.swift │ │ ├── DeviceOrientation.swift │ │ ├── NotchMode.swift │ │ ├── NotchScroll.swift │ │ └── ToolIconTypes.swift │ ├── Extenstions │ │ ├── UIScreen+NotchFrame.swift │ │ ├── UIScreen+NotchPositionMultiplier.swift │ │ ├── UIScreen+iPhone10.swift │ │ └── UIView+DrawNotch.swift │ ├── Info.plist │ ├── NotchToolkit.h │ └── Protocols │ │ └── NotchToolbarDelegate.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── NotchToolkit.podspec.json │ ├── Manifest.lock │ ├── NotchToolkit │ ├── LICENSE │ ├── NotchToolkit │ │ ├── Cells │ │ │ └── NotchToolCell.swift │ │ ├── Enumerators │ │ │ ├── CurveSettings.swift │ │ │ ├── DeviceOrientation.swift │ │ │ ├── NotchMode.swift │ │ │ └── NotchScroll.swift │ │ ├── Extensions │ │ │ ├── UIScreen+NotchFrame.swift │ │ │ ├── UIScreen+NotchPositionMultiplier.swift │ │ │ ├── UIScreen+iPhone10.swift │ │ │ └── UIView+OvalOrCorners.swift │ │ ├── NotchBar.swift │ │ ├── NotchToolbar.swift │ │ ├── NotchToolkit.h │ │ └── Protocols │ │ │ └── NotchToolbarDelegate.swift │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── NotchToolkit │ ├── Info.plist │ ├── NotchToolkit-dummy.m │ ├── NotchToolkit-prefix.pch │ ├── NotchToolkit-umbrella.h │ ├── NotchToolkit.modulemap │ └── NotchToolkit.xcconfig │ ├── Pods-NotchToolkit-Example │ ├── Info.plist │ ├── Pods-NotchToolkit-Example-acknowledgements.markdown │ ├── Pods-NotchToolkit-Example-acknowledgements.plist │ ├── Pods-NotchToolkit-Example-dummy.m │ ├── Pods-NotchToolkit-Example-frameworks.sh │ ├── Pods-NotchToolkit-Example-resources.sh │ ├── Pods-NotchToolkit-Example-umbrella.h │ ├── Pods-NotchToolkit-Example.debug.xcconfig │ ├── Pods-NotchToolkit-Example.modulemap │ └── Pods-NotchToolkit-Example.release.xcconfig │ └── Pods-NotchToolkit-ExampleTests │ ├── Info.plist │ ├── Pods-NotchToolkit-ExampleTests-acknowledgements.markdown │ ├── Pods-NotchToolkit-ExampleTests-acknowledgements.plist │ ├── Pods-NotchToolkit-ExampleTests-dummy.m │ ├── Pods-NotchToolkit-ExampleTests-frameworks.sh │ ├── Pods-NotchToolkit-ExampleTests-resources.sh │ ├── Pods-NotchToolkit-ExampleTests-umbrella.h │ ├── Pods-NotchToolkit-ExampleTests.debug.xcconfig │ ├── Pods-NotchToolkit-ExampleTests.modulemap │ └── Pods-NotchToolkit-ExampleTests.release.xcconfig ├── LICENSE ├── NotchToolkit.podspec ├── NotchToolkit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── NotchToolkit.xcscheme ├── NotchToolkit ├── Cells │ ├── NotchToolCell.swift │ └── NotchToolNameIconCell.swift ├── Classes │ ├── NotchBar.swift │ ├── NotchImageView.swift │ └── NotchToolbar.swift ├── Enumerations │ ├── CurveSettings.swift │ ├── DeviceOrientation.swift │ ├── NotchMode.swift │ ├── NotchScroll.swift │ └── ToolIconTypes.swift ├── Extensions │ ├── UIScreen+NotchFrame.swift │ ├── UIScreen+NotchPositionMultiplier.swift │ ├── UIScreen+iPhone10.swift │ └── UIView+DrawNotch.swift ├── Info.plist ├── NotchToolkit.h └── Protocols │ └── NotchToolbarDelegate.swift ├── NotchToolkitTests ├── Info.plist └── NotchToolkitTests.swift ├── README.md └── drawNotch.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | echo "4.0" > .swift-version -------------------------------------------------------------------------------- /Example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/LICENSE -------------------------------------------------------------------------------- /Example/NotchToolkit-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/NotchToolkit-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NotchToolkit-Example.xcodeproj/xcshareddata/xcschemes/NotchToolkit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example.xcodeproj/xcshareddata/xcschemes/NotchToolkit-Example.xcscheme -------------------------------------------------------------------------------- /Example/NotchToolkit-Example.xcodeproj/xcshareddata/xcschemes/NotchToolkit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example.xcodeproj/xcshareddata/xcschemes/NotchToolkit.xcscheme -------------------------------------------------------------------------------- /Example/NotchToolkit-Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/pikachusquare.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/pikachusquare.imageset/Contents.json -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/pikachusquare.imageset/pikachusquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/pikachusquare.imageset/pikachusquare.png -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/spongebob.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/spongebob.imageset/Contents.json -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/Assets.xcassets/spongebob.imageset/spongebob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/Assets.xcassets/spongebob.imageset/spongebob.png -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Assets/tst_img.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Assets/tst_img.JPG -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/CornerOvalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/CornerOvalViewController.swift -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/Info.plist -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/NotchImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/NotchImageViewController.swift -------------------------------------------------------------------------------- /Example/NotchToolkit-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-Example/ViewController.swift -------------------------------------------------------------------------------- /Example/NotchToolkit-ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/NotchToolkit-ExampleTests/NotchToolkit_ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit-ExampleTests/NotchToolkit_ExampleTests.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Cells/NotchToolCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Cells/NotchToolCell.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Cells/NotchToolNameIconCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Cells/NotchToolNameIconCell.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Classes/NotchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Classes/NotchBar.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Classes/NotchImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Classes/NotchImageView.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Classes/NotchToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Classes/NotchToolbar.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Enumerations/CurveSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Enumerations/CurveSettings.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Enumerations/DeviceOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Enumerations/DeviceOrientation.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Enumerations/NotchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Enumerations/NotchMode.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Enumerations/NotchScroll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Enumerations/NotchScroll.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Enumerations/ToolIconTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Enumerations/ToolIconTypes.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Extenstions/UIScreen+NotchFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Extenstions/UIScreen+NotchFrame.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Extenstions/UIScreen+NotchPositionMultiplier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Extenstions/UIScreen+NotchPositionMultiplier.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Extenstions/UIScreen+iPhone10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Extenstions/UIScreen+iPhone10.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Extenstions/UIView+DrawNotch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Extenstions/UIView+DrawNotch.swift -------------------------------------------------------------------------------- /Example/NotchToolkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Info.plist -------------------------------------------------------------------------------- /Example/NotchToolkit/NotchToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/NotchToolkit.h -------------------------------------------------------------------------------- /Example/NotchToolkit/Protocols/NotchToolbarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/NotchToolkit/Protocols/NotchToolbarDelegate.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/NotchToolkit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Local Podspecs/NotchToolkit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/LICENSE -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Cells/NotchToolCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Cells/NotchToolCell.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Enumerators/CurveSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Enumerators/CurveSettings.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Enumerators/DeviceOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Enumerators/DeviceOrientation.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Enumerators/NotchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Enumerators/NotchMode.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Enumerators/NotchScroll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Enumerators/NotchScroll.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+NotchFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+NotchFrame.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+NotchPositionMultiplier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+NotchPositionMultiplier.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+iPhone10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIScreen+iPhone10.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIView+OvalOrCorners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Extensions/UIView+OvalOrCorners.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/NotchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/NotchBar.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/NotchToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/NotchToolbar.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/NotchToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/NotchToolkit.h -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/NotchToolkit/Protocols/NotchToolbarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/NotchToolkit/Protocols/NotchToolbarDelegate.swift -------------------------------------------------------------------------------- /Example/Pods/NotchToolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/NotchToolkit/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/NotchToolkit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/NotchToolkit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/NotchToolkit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NotchToolkit/NotchToolkit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/NotchToolkit/NotchToolkit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-Example/Pods-NotchToolkit-Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/Example/Pods/Target Support Files/Pods-NotchToolkit-ExampleTests/Pods-NotchToolkit-ExampleTests.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /NotchToolkit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit.podspec -------------------------------------------------------------------------------- /NotchToolkit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NotchToolkit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NotchToolkit.xcodeproj/xcshareddata/xcschemes/NotchToolkit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit.xcodeproj/xcshareddata/xcschemes/NotchToolkit.xcscheme -------------------------------------------------------------------------------- /NotchToolkit/Cells/NotchToolCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Cells/NotchToolCell.swift -------------------------------------------------------------------------------- /NotchToolkit/Cells/NotchToolNameIconCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Cells/NotchToolNameIconCell.swift -------------------------------------------------------------------------------- /NotchToolkit/Classes/NotchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Classes/NotchBar.swift -------------------------------------------------------------------------------- /NotchToolkit/Classes/NotchImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Classes/NotchImageView.swift -------------------------------------------------------------------------------- /NotchToolkit/Classes/NotchToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Classes/NotchToolbar.swift -------------------------------------------------------------------------------- /NotchToolkit/Enumerations/CurveSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Enumerations/CurveSettings.swift -------------------------------------------------------------------------------- /NotchToolkit/Enumerations/DeviceOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Enumerations/DeviceOrientation.swift -------------------------------------------------------------------------------- /NotchToolkit/Enumerations/NotchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Enumerations/NotchMode.swift -------------------------------------------------------------------------------- /NotchToolkit/Enumerations/NotchScroll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Enumerations/NotchScroll.swift -------------------------------------------------------------------------------- /NotchToolkit/Enumerations/ToolIconTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Enumerations/ToolIconTypes.swift -------------------------------------------------------------------------------- /NotchToolkit/Extensions/UIScreen+NotchFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Extensions/UIScreen+NotchFrame.swift -------------------------------------------------------------------------------- /NotchToolkit/Extensions/UIScreen+NotchPositionMultiplier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Extensions/UIScreen+NotchPositionMultiplier.swift -------------------------------------------------------------------------------- /NotchToolkit/Extensions/UIScreen+iPhone10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Extensions/UIScreen+iPhone10.swift -------------------------------------------------------------------------------- /NotchToolkit/Extensions/UIView+DrawNotch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Extensions/UIView+DrawNotch.swift -------------------------------------------------------------------------------- /NotchToolkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Info.plist -------------------------------------------------------------------------------- /NotchToolkit/NotchToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/NotchToolkit.h -------------------------------------------------------------------------------- /NotchToolkit/Protocols/NotchToolbarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkit/Protocols/NotchToolbarDelegate.swift -------------------------------------------------------------------------------- /NotchToolkitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkitTests/Info.plist -------------------------------------------------------------------------------- /NotchToolkitTests/NotchToolkitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/NotchToolkitTests/NotchToolkitTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/README.md -------------------------------------------------------------------------------- /drawNotch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFathi/NotchToolkit/HEAD/drawNotch.gif --------------------------------------------------------------------------------