├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── NativePartialSheet.xcscheme ├── LICENSE ├── NativePartialSheet-Bridging-Header.h ├── Package.swift ├── README.md └── Sources ├── NativePartialSheet ├── Common │ ├── UIApplication+keyWindowPresentedController.swift │ └── UIView+firstParentWithClassName.swift ├── Detent.swift ├── NativePartialSheet.swift ├── Preferences.swift ├── SheetWrapperView.swift └── View+sheetView.swift └── NativePartialSheetHelper └── include ├── NativePartialSheetHelper.h └── NativePartialSheetHelper.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/NativePartialSheet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/NativePartialSheet.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/LICENSE -------------------------------------------------------------------------------- /NativePartialSheet-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "NativePartialSheetHelper.h" 2 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/README.md -------------------------------------------------------------------------------- /Sources/NativePartialSheet/Common/UIApplication+keyWindowPresentedController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/Common/UIApplication+keyWindowPresentedController.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/Common/UIView+firstParentWithClassName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/Common/UIView+firstParentWithClassName.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/Detent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/Detent.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/NativePartialSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/NativePartialSheet.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/Preferences.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/SheetWrapperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/SheetWrapperView.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheet/View+sheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheet/View+sheetView.swift -------------------------------------------------------------------------------- /Sources/NativePartialSheetHelper/include/NativePartialSheetHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheetHelper/include/NativePartialSheetHelper.h -------------------------------------------------------------------------------- /Sources/NativePartialSheetHelper/include/NativePartialSheetHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolONEOfficial/NativePartialSheet/HEAD/Sources/NativePartialSheetHelper/include/NativePartialSheetHelper.m --------------------------------------------------------------------------------