├── .gitignore ├── .travis.yml ├── DuckUI.podspec ├── DuckUI ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── Example ├── DuckUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DuckUI-Example.xcscheme ├── DuckUI.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DuckUI │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Notification.png │ │ │ ├── Icon-Notification@2x.png │ │ │ ├── Icon-Notification@3x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── icon.png │ │ ├── Contents.json │ │ └── icon.imageset │ │ │ ├── Contents.json │ │ │ └── icon.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Bond │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Sources │ │ │ ├── BNDProtocolProxyBase │ │ │ │ ├── BNDProtocolProxyBase.m │ │ │ │ └── include │ │ │ │ │ └── BNDProtocolProxyBase.h │ │ │ └── Bond │ │ │ │ ├── BNDInvocation.swift │ │ │ │ ├── Bond.swift │ │ │ │ ├── Data Sources │ │ │ │ ├── FlatDataSourceChangesetConvertible.swift │ │ │ │ ├── OutlineChangesetConvertible.swift │ │ │ │ └── SectionedDataSourceChangesetConvertible.swift │ │ │ │ ├── Data Structures │ │ │ │ ├── Array2D.swift │ │ │ │ ├── Collection+Bond.swift │ │ │ │ ├── IndexPath+Bond.swift │ │ │ │ ├── TreeArray.swift │ │ │ │ ├── TreeNode.swift │ │ │ │ ├── TreeProtocol+Differ.swift │ │ │ │ ├── TreeProtocol.swift │ │ │ │ └── TreeView.swift │ │ │ │ ├── Deprecations │ │ │ │ └── Deprecations.swift │ │ │ │ ├── DynamicSubject.swift │ │ │ │ ├── Instantiatable.swift │ │ │ │ ├── Observable Collections │ │ │ │ ├── Changeset.swift │ │ │ │ ├── ChangesetContainer.swift │ │ │ │ ├── OrderedCollectionChangeset.swift │ │ │ │ ├── OrderedCollectionDiff+IndexPath+Differ.swift │ │ │ │ ├── OrderedCollectionDiff+IndexPath+Patch.swift │ │ │ │ ├── OrderedCollectionDiff+IndexPath.swift │ │ │ │ ├── OrderedCollectionDiff+Strideable+Differ.swift │ │ │ │ ├── OrderedCollectionDiff+Strideable+Patch.swift │ │ │ │ ├── OrderedCollectionDiff+Strideable.swift │ │ │ │ ├── OrderedCollectionDiff.swift │ │ │ │ ├── OrderedCollectionOperation+IndexPath+Undo.swift │ │ │ │ ├── OrderedCollectionOperation+Strideable+Undo.swift │ │ │ │ ├── OrderedCollectionOperation.swift │ │ │ │ ├── Property+ChangesetContainerProtocol.swift │ │ │ │ ├── Signal+ChangesetProtocol.swift │ │ │ │ ├── TreeChangeset+Array2D.swift │ │ │ │ ├── TreeChangeset.swift │ │ │ │ ├── UnorderedCollectionChangeset+Dictionary.swift │ │ │ │ ├── UnorderedCollectionChangeset+Set.swift │ │ │ │ ├── UnorderedCollectionChangeset.swift │ │ │ │ ├── UnorderedCollectionDiff.swift │ │ │ │ └── UnorderedCollectionOperation.swift │ │ │ │ ├── Observable.swift │ │ │ │ ├── Property+BidirectionalMap.swift │ │ │ │ ├── ProtocolProxy.swift │ │ │ │ ├── ProtocolProxyController.swift │ │ │ │ ├── Shared │ │ │ │ ├── CALayer.swift │ │ │ │ ├── NSLayoutConstraint.swift │ │ │ │ ├── NSObject+KVO.swift │ │ │ │ ├── NSObject.swift │ │ │ │ └── NotificationCenter.swift │ │ │ │ ├── Signal+Heartbeat.swift │ │ │ │ └── UIKit │ │ │ │ ├── UIAccessibilityIdentification.swift │ │ │ │ ├── UIActivityIndicatorView.swift │ │ │ │ ├── UIApplication.swift │ │ │ │ ├── UIBarButtonItem.swift │ │ │ │ ├── UIBarItem.swift │ │ │ │ ├── UIButton.swift │ │ │ │ ├── UICollectionView+DataSource.swift │ │ │ │ ├── UICollectionView.swift │ │ │ │ ├── UIControl.swift │ │ │ │ ├── UIDatePicker.swift │ │ │ │ ├── UIGestureRecognizer.swift │ │ │ │ ├── UIImageView.swift │ │ │ │ ├── UILabel.swift │ │ │ │ ├── UINavigationBar.swift │ │ │ │ ├── UINavigationItem.swift │ │ │ │ ├── UIPickerView+DataSource.swift │ │ │ │ ├── UIPickerView.swift │ │ │ │ ├── UIProgressView.swift │ │ │ │ ├── UIRefreshControl.swift │ │ │ │ ├── UISearchBar.swift │ │ │ │ ├── UISegmentedControl.swift │ │ │ │ ├── UISlider.swift │ │ │ │ ├── UIStepper.swift │ │ │ │ ├── UISwitch.swift │ │ │ │ ├── UITableView+DataSource.swift │ │ │ │ ├── UITableView.swift │ │ │ │ ├── UITextField.swift │ │ │ │ ├── UITextView.swift │ │ │ │ └── UIView.swift │ │ └── Supporting Files │ │ │ └── Bond.h │ ├── Differ │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── Sources │ │ │ └── Differ │ │ │ ├── BatchUpdate.swift │ │ │ ├── Diff+UIKit.swift │ │ │ ├── Diff.swift │ │ │ ├── ExtendedDiff.swift │ │ │ ├── ExtendedPatch+Apply.swift │ │ │ ├── ExtendedPatch.swift │ │ │ ├── GenericPatch.swift │ │ │ ├── LinkedList.swift │ │ │ ├── NestedBatchUpdate.swift │ │ │ ├── NestedDiff.swift │ │ │ ├── NestedExtendedDiff.swift │ │ │ ├── Patch+Apply.swift │ │ │ ├── Patch+Sort.swift │ │ │ └── Patch.swift │ ├── JGProgressHUD │ │ ├── JGProgressHUD │ │ │ ├── JGProgressHUD │ │ │ │ ├── JGProgressHUD-Defines.h │ │ │ │ ├── JGProgressHUD.h │ │ │ │ ├── JGProgressHUD.m │ │ │ │ ├── JGProgressHUDAnimation.h │ │ │ │ ├── JGProgressHUDAnimation.m │ │ │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ │ │ ├── JGProgressHUDErrorIndicatorView.m │ │ │ │ ├── JGProgressHUDFadeAnimation.h │ │ │ │ ├── JGProgressHUDFadeAnimation.m │ │ │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ │ │ ├── JGProgressHUDFadeZoomAnimation.m │ │ │ │ ├── JGProgressHUDImageIndicatorView.h │ │ │ │ ├── JGProgressHUDImageIndicatorView.m │ │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.m │ │ │ │ ├── JGProgressHUDIndicatorView.h │ │ │ │ ├── JGProgressHUDIndicatorView.m │ │ │ │ ├── JGProgressHUDPieIndicatorView.h │ │ │ │ ├── JGProgressHUDPieIndicatorView.m │ │ │ │ ├── JGProgressHUDRingIndicatorView.h │ │ │ │ ├── JGProgressHUDRingIndicatorView.m │ │ │ │ ├── JGProgressHUDShadow.h │ │ │ │ ├── JGProgressHUDShadow.m │ │ │ │ ├── JGProgressHUDSuccessIndicatorView.h │ │ │ │ └── JGProgressHUDSuccessIndicatorView.m │ │ │ └── Resources │ │ │ │ ├── jg_hud_error.png │ │ │ │ ├── jg_hud_error@2x.png │ │ │ │ ├── jg_hud_error@3x.png │ │ │ │ ├── jg_hud_success.png │ │ │ │ ├── jg_hud_success@2x.png │ │ │ │ └── jg_hud_success@3x.png │ │ ├── LICENSE.txt │ │ └── README.md │ ├── Layoutless │ │ ├── LICENSE │ │ ├── Layoutless │ │ │ └── Layoutless.h │ │ ├── README.md │ │ └── Sources │ │ │ ├── Layout │ │ │ ├── Anchorable.swift │ │ │ ├── ChildNode.swift │ │ │ ├── Layout.swift │ │ │ ├── LayoutNode.swift │ │ │ ├── LayoutProtocol.swift │ │ │ ├── Layoutless+UIKit.swift │ │ │ ├── Layoutless.swift │ │ │ ├── Length.swift │ │ │ ├── Revertable.swift │ │ │ ├── TraitQueryLayoutSet.swift │ │ │ ├── UIView+iOS10.swift │ │ │ └── WindowTraitCollection.swift │ │ │ ├── Style │ │ │ └── Style.swift │ │ │ └── Views │ │ │ ├── Deprecations.swift │ │ │ ├── UI.Button.swift │ │ │ ├── UI.CollectionViewCell.swift │ │ │ ├── UI.Control.swift │ │ │ ├── UI.ImageView.swift │ │ │ ├── UI.Label.swift │ │ │ ├── UI.TableViewCell.swift │ │ │ ├── UI.TextField.swift │ │ │ ├── UI.View.swift │ │ │ ├── UI.ViewController.swift │ │ │ ├── UI.Window.swift │ │ │ └── UI.swift │ ├── Local Podspecs │ │ └── DuckUI.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── RSKPlaceholderTextView │ │ ├── LICENSE │ │ ├── README.md │ │ └── RSKPlaceholderTextView │ │ │ └── RSKPlaceholderTextView.swift │ ├── ReactiveKit │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Bindable.swift │ │ │ ├── Connectable.swift │ │ │ ├── Deallocatable.swift │ │ │ ├── Deprecations.swift │ │ │ ├── Disposable.swift │ │ │ ├── Event.swift │ │ │ ├── ExecutionContext.swift │ │ │ ├── LoadingProperty.swift │ │ │ ├── LoadingSignal.swift │ │ │ ├── Lock.swift │ │ │ ├── Observer.swift │ │ │ ├── Property.swift │ │ │ ├── Reactive.swift │ │ │ ├── Signal.swift │ │ │ ├── SignalProtocol+Arities.swift │ │ │ ├── SignalProtocol+Combining.swift │ │ │ ├── SignalProtocol+ErrorHandling.swift │ │ │ ├── SignalProtocol+Event.swift │ │ │ ├── SignalProtocol+Filtering.swift │ │ │ ├── SignalProtocol+Monad.swift │ │ │ ├── SignalProtocol+Optional.swift │ │ │ ├── SignalProtocol+Result.swift │ │ │ ├── SignalProtocol+Sequence.swift │ │ │ ├── SignalProtocol+Threading.swift │ │ │ ├── SignalProtocol+Transforming.swift │ │ │ ├── SignalProtocol+Utilities.swift │ │ │ ├── SignalProtocol.swift │ │ │ └── Subjects.swift │ ├── Target Support Files │ │ ├── Bond │ │ │ ├── Bond-Info.plist │ │ │ ├── Bond-dummy.m │ │ │ ├── Bond-prefix.pch │ │ │ ├── Bond-umbrella.h │ │ │ ├── Bond.modulemap │ │ │ └── Bond.xcconfig │ │ ├── Differ │ │ │ ├── Differ-Info.plist │ │ │ ├── Differ-dummy.m │ │ │ ├── Differ-prefix.pch │ │ │ ├── Differ-umbrella.h │ │ │ ├── Differ.modulemap │ │ │ └── Differ.xcconfig │ │ ├── DuckUI │ │ │ ├── DuckUI-Info.plist │ │ │ ├── DuckUI-dummy.m │ │ │ ├── DuckUI-prefix.pch │ │ │ ├── DuckUI-umbrella.h │ │ │ ├── DuckUI.modulemap │ │ │ └── DuckUI.xcconfig │ │ ├── Layoutless │ │ │ ├── Layoutless-Info.plist │ │ │ ├── Layoutless-dummy.m │ │ │ ├── Layoutless-prefix.pch │ │ │ ├── Layoutless-umbrella.h │ │ │ ├── Layoutless.modulemap │ │ │ └── Layoutless.xcconfig │ │ ├── Pods-DuckUI_Example │ │ │ ├── Pods-DuckUI_Example-Info.plist │ │ │ ├── Pods-DuckUI_Example-acknowledgements.markdown │ │ │ ├── Pods-DuckUI_Example-acknowledgements.plist │ │ │ ├── Pods-DuckUI_Example-dummy.m │ │ │ ├── Pods-DuckUI_Example-frameworks.sh │ │ │ ├── Pods-DuckUI_Example-umbrella.h │ │ │ ├── Pods-DuckUI_Example.debug.xcconfig │ │ │ ├── Pods-DuckUI_Example.modulemap │ │ │ └── Pods-DuckUI_Example.release.xcconfig │ │ └── Pods-DuckUI_Tests │ │ │ ├── Pods-DuckUI_Tests-Info.plist │ │ │ ├── Pods-DuckUI_Tests-acknowledgements.markdown │ │ │ ├── Pods-DuckUI_Tests-acknowledgements.plist │ │ │ ├── Pods-DuckUI_Tests-dummy.m │ │ │ ├── Pods-DuckUI_Tests-umbrella.h │ │ │ ├── Pods-DuckUI_Tests.debug.xcconfig │ │ │ ├── Pods-DuckUI_Tests.modulemap │ │ │ └── Pods-DuckUI_Tests.release.xcconfig │ └── TinyConstraints │ │ ├── LICENSE │ │ ├── README.md │ │ └── TinyConstraints │ │ └── Classes │ │ ├── Abstraction.swift │ │ ├── Constrainable.swift │ │ ├── Constraints.swift │ │ ├── Stack.swift │ │ ├── TinyConstraints+superview.swift │ │ ├── TinyConstraints.swift │ │ └── TinyEdgeInsets.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── Source ├── D_ActivityController │ └── D_ActivityController.swift ├── D_AlertController │ └── D_AlertController.swift ├── D_Color │ └── D_Color.swift ├── D_Debug │ └── D_Debug.swift ├── D_DispatchQueueHelper │ └── D_DispatchQueueHelper.swift ├── D_Enums │ └── D_Enums.swift ├── D_Hud │ └── D_Hud.swift ├── D_InfoPlistParser │ └── D_InfoPlistParser.swift ├── D_Line │ └── D_Line.swift ├── D_List │ ├── D_ListBackgroundImages.swift │ ├── D_ListCell.swift │ ├── D_ListController.swift │ ├── D_ListFController.swift │ ├── D_ListFooter.swift │ ├── D_ListHController.swift │ ├── D_ListHFController.swift │ └── D_ListHeader.swift ├── D_Log │ └── D_Log.swift ├── D_SCViews │ ├── D_SCButtonView.swift │ ├── D_SCImageView.swift │ └── D_SCView.swift ├── D_ScrollView │ ├── D_ScrollView+.swift │ ├── D_ScrollView.swift │ ├── D_ScrollViewContainer.swift │ └── D_ScrollViewElement.swift ├── D_Stack │ └── D_Stack.swift ├── D_TextField │ └── D_TextField.swift ├── D_Typealiases │ └── D_Typealiases.swift ├── D_ViewController │ └── D_ViewController.swift └── Extensions │ ├── D_Extensions │ ├── D_TextField+.swift │ └── D_TextView+.swift │ ├── Foundation │ ├── Array+.swift │ └── Dictionary+.swift │ └── UIKit │ ├── UIApplication+.swift │ ├── UIButton+.swift │ ├── UIColor+.swift │ ├── UIImageView.swift │ ├── UILabel+.swift │ ├── UINavigationController+.swift │ ├── UIStackView+.swift │ └── UIView+.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/.travis.yml -------------------------------------------------------------------------------- /DuckUI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/DuckUI.podspec -------------------------------------------------------------------------------- /DuckUI/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DuckUI/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/DuckUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DuckUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DuckUI.xcodeproj/xcshareddata/xcschemes/DuckUI-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI.xcodeproj/xcshareddata/xcschemes/DuckUI-Example.xcscheme -------------------------------------------------------------------------------- /Example/DuckUI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DuckUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/DuckUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/AppDelegate.swift -------------------------------------------------------------------------------- /Example/DuckUI/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/DuckUI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Notification@3x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DuckUI/Images.xcassets/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Images.xcassets/icon.imageset/icon.png -------------------------------------------------------------------------------- /Example/DuckUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/Info.plist -------------------------------------------------------------------------------- /Example/DuckUI/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/DuckUI/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Bond/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Bond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/README.md -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/BNDProtocolProxyBase/BNDProtocolProxyBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/BNDProtocolProxyBase/BNDProtocolProxyBase.m -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/BNDProtocolProxyBase/include/BNDProtocolProxyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/BNDProtocolProxyBase/include/BNDProtocolProxyBase.h -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/BNDInvocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/BNDInvocation.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Bond.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Bond.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Sources/FlatDataSourceChangesetConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Sources/FlatDataSourceChangesetConvertible.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Sources/OutlineChangesetConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Sources/OutlineChangesetConvertible.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Sources/SectionedDataSourceChangesetConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Sources/SectionedDataSourceChangesetConvertible.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/Array2D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/Array2D.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/Collection+Bond.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/Collection+Bond.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/IndexPath+Bond.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/IndexPath+Bond.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/TreeArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/TreeArray.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/TreeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/TreeNode.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/TreeProtocol+Differ.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/TreeProtocol+Differ.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/TreeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/TreeProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Data Structures/TreeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Data Structures/TreeView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Deprecations/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Deprecations/Deprecations.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/DynamicSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/DynamicSubject.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Instantiatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Instantiatable.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/Changeset.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/ChangesetContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/ChangesetContainer.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionChangeset.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath+Differ.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath+Differ.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath+Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath+Patch.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+IndexPath.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable+Differ.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable+Differ.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable+Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable+Patch.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff+Strideable.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionDiff.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation+IndexPath+Undo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation+IndexPath+Undo.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation+Strideable+Undo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation+Strideable+Undo.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/OrderedCollectionOperation.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/Property+ChangesetContainerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/Property+ChangesetContainerProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/Signal+ChangesetProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/Signal+ChangesetProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/TreeChangeset+Array2D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/TreeChangeset+Array2D.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/TreeChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/TreeChangeset.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset+Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset+Dictionary.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset+Set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset+Set.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionChangeset.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionDiff.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable Collections/UnorderedCollectionOperation.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Observable.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Property+BidirectionalMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Property+BidirectionalMap.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/ProtocolProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/ProtocolProxy.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/ProtocolProxyController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/ProtocolProxyController.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Shared/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Shared/CALayer.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Shared/NSLayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Shared/NSLayoutConstraint.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Shared/NSObject+KVO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Shared/NSObject+KVO.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Shared/NSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Shared/NSObject.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Shared/NotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Shared/NotificationCenter.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/Signal+Heartbeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/Signal+Heartbeat.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIAccessibilityIdentification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIAccessibilityIdentification.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIActivityIndicatorView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIApplication.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIBarButtonItem.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIBarItem.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIButton.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UICollectionView+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UICollectionView+DataSource.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UICollectionView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIControl.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIDatePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIDatePicker.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIGestureRecognizer.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIImageView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UILabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UILabel.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UINavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UINavigationBar.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UINavigationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UINavigationItem.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIPickerView+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIPickerView+DataSource.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIPickerView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIProgressView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIRefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIRefreshControl.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UISearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UISearchBar.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UISegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UISegmentedControl.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UISlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UISlider.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIStepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIStepper.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UISwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UISwitch.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UITableView+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UITableView+DataSource.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UITableView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UITextField.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UITextView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Sources/Bond/UIKit/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Sources/Bond/UIKit/UIView.swift -------------------------------------------------------------------------------- /Example/Pods/Bond/Supporting Files/Bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Bond/Supporting Files/Bond.h -------------------------------------------------------------------------------- /Example/Pods/Differ/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/Differ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/README.md -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/BatchUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/BatchUpdate.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/Diff+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/Diff+UIKit.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/Diff.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/ExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/ExtendedDiff.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/ExtendedPatch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/ExtendedPatch+Apply.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/ExtendedPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/ExtendedPatch.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/GenericPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/GenericPatch.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/LinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/LinkedList.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/NestedBatchUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/NestedBatchUpdate.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/NestedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/NestedDiff.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/NestedExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/NestedExtendedDiff.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/Patch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/Patch+Apply.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/Patch+Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/Patch+Sort.swift -------------------------------------------------------------------------------- /Example/Pods/Differ/Sources/Differ/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Differ/Sources/Differ/Patch.swift -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD-Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD-Defines.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDShadow.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDShadow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDShadow.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error@2x.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_error@3x.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success@2x.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/JGProgressHUD/Resources/jg_hud_success@3x.png -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /Example/Pods/JGProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/JGProgressHUD/README.md -------------------------------------------------------------------------------- /Example/Pods/Layoutless/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Layoutless/Layoutless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Layoutless/Layoutless.h -------------------------------------------------------------------------------- /Example/Pods/Layoutless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/README.md -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Anchorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Anchorable.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/ChildNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/ChildNode.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Layout.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/LayoutNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/LayoutNode.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/LayoutProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/LayoutProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Layoutless+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Layoutless+UIKit.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Layoutless.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Layoutless.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Length.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Length.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/Revertable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/Revertable.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/TraitQueryLayoutSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/TraitQueryLayoutSet.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/UIView+iOS10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/UIView+iOS10.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Layout/WindowTraitCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Layout/WindowTraitCollection.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Style/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Style/Style.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/Deprecations.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.Button.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.CollectionViewCell.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.Control.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.Control.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.ImageView.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.Label.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.TableViewCell.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.TextField.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.View.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.ViewController.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.Window.swift -------------------------------------------------------------------------------- /Example/Pods/Layoutless/Sources/Views/UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Layoutless/Sources/Views/UI.swift -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DuckUI.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Local Podspecs/DuckUI.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/RSKPlaceholderTextView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/RSKPlaceholderTextView/LICENSE -------------------------------------------------------------------------------- /Example/Pods/RSKPlaceholderTextView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/RSKPlaceholderTextView/README.md -------------------------------------------------------------------------------- /Example/Pods/RSKPlaceholderTextView/RSKPlaceholderTextView/RSKPlaceholderTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/RSKPlaceholderTextView/RSKPlaceholderTextView/RSKPlaceholderTextView.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/LICENSE -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/README.md -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Bindable.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Connectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Connectable.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Deallocatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Deallocatable.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Deprecations.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Disposable.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Event.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/ExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/ExecutionContext.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/LoadingProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/LoadingProperty.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/LoadingSignal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/LoadingSignal.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Lock.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Observer.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Property.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Reactive.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Signal.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Arities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Arities.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Combining.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Combining.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+ErrorHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+ErrorHandling.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Event.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Filtering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Filtering.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Monad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Monad.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Optional.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Result.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Sequence.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Threading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Threading.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Transforming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Transforming.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol+Utilities.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/SignalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/SignalProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/ReactiveKit/Sources/Subjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/ReactiveKit/Sources/Subjects.swift -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Bond/Bond.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Bond/Bond.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Differ/Differ.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Differ/Differ.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DuckUI/DuckUI.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/DuckUI/DuckUI.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Layoutless/Layoutless.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Layoutless/Layoutless.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Example/Pods-DuckUI_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/Target Support Files/Pods-DuckUI_Tests/Pods-DuckUI_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/LICENSE -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/README.md -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/Abstraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/Abstraction.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/Constrainable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/Constrainable.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/Constraints.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/Stack.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyConstraints+superview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyConstraints+superview.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyConstraints.swift -------------------------------------------------------------------------------- /Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyEdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Pods/TinyConstraints/TinyConstraints/Classes/TinyEdgeInsets.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/README.md -------------------------------------------------------------------------------- /Source/D_ActivityController/D_ActivityController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ActivityController/D_ActivityController.swift -------------------------------------------------------------------------------- /Source/D_AlertController/D_AlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_AlertController/D_AlertController.swift -------------------------------------------------------------------------------- /Source/D_Color/D_Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Color/D_Color.swift -------------------------------------------------------------------------------- /Source/D_Debug/D_Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Debug/D_Debug.swift -------------------------------------------------------------------------------- /Source/D_DispatchQueueHelper/D_DispatchQueueHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_DispatchQueueHelper/D_DispatchQueueHelper.swift -------------------------------------------------------------------------------- /Source/D_Enums/D_Enums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Enums/D_Enums.swift -------------------------------------------------------------------------------- /Source/D_Hud/D_Hud.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Hud/D_Hud.swift -------------------------------------------------------------------------------- /Source/D_InfoPlistParser/D_InfoPlistParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_InfoPlistParser/D_InfoPlistParser.swift -------------------------------------------------------------------------------- /Source/D_Line/D_Line.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Line/D_Line.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListBackgroundImages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListBackgroundImages.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListCell.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListController.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListFController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListFController.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListFooter.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListHController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListHController.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListHFController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListHFController.swift -------------------------------------------------------------------------------- /Source/D_List/D_ListHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_List/D_ListHeader.swift -------------------------------------------------------------------------------- /Source/D_Log/D_Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Log/D_Log.swift -------------------------------------------------------------------------------- /Source/D_SCViews/D_SCButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_SCViews/D_SCButtonView.swift -------------------------------------------------------------------------------- /Source/D_SCViews/D_SCImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_SCViews/D_SCImageView.swift -------------------------------------------------------------------------------- /Source/D_SCViews/D_SCView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_SCViews/D_SCView.swift -------------------------------------------------------------------------------- /Source/D_ScrollView/D_ScrollView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ScrollView/D_ScrollView+.swift -------------------------------------------------------------------------------- /Source/D_ScrollView/D_ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ScrollView/D_ScrollView.swift -------------------------------------------------------------------------------- /Source/D_ScrollView/D_ScrollViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ScrollView/D_ScrollViewContainer.swift -------------------------------------------------------------------------------- /Source/D_ScrollView/D_ScrollViewElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ScrollView/D_ScrollViewElement.swift -------------------------------------------------------------------------------- /Source/D_Stack/D_Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Stack/D_Stack.swift -------------------------------------------------------------------------------- /Source/D_TextField/D_TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_TextField/D_TextField.swift -------------------------------------------------------------------------------- /Source/D_Typealiases/D_Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_Typealiases/D_Typealiases.swift -------------------------------------------------------------------------------- /Source/D_ViewController/D_ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/D_ViewController/D_ViewController.swift -------------------------------------------------------------------------------- /Source/Extensions/D_Extensions/D_TextField+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/D_Extensions/D_TextField+.swift -------------------------------------------------------------------------------- /Source/Extensions/D_Extensions/D_TextView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/D_Extensions/D_TextView+.swift -------------------------------------------------------------------------------- /Source/Extensions/Foundation/Array+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/Foundation/Array+.swift -------------------------------------------------------------------------------- /Source/Extensions/Foundation/Dictionary+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/Foundation/Dictionary+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIApplication+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIApplication+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIButton+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIButton+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIColor+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIColor+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIImageView.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UILabel+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UILabel+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UINavigationController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UINavigationController+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIStackView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIStackView+.swift -------------------------------------------------------------------------------- /Source/Extensions/UIKit/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebeloper/DuckUI/HEAD/Source/Extensions/UIKit/UIView+.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------