gitextract_br9jtfir/ ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── Demos/ │ ├── ConsentsDemo/ │ │ ├── ConsentsDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Sources/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── MainViewController.swift │ ├── ConsentsObjC/ │ │ ├── ConsentsObjC.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Sources/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── ConsentsSwiftUI/ │ │ ├── ConsentsSwiftUI.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Sources/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ConsentStatesView.swift │ │ ├── ConsentsDemoSwiftUIApp.swift │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ └── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ └── Shared/ │ ├── Base.lproj/ │ │ └── Localizable.strings │ └── Settings.bundle/ │ ├── Root.plist │ └── en.lproj/ │ └── Root.strings ├── LICENSE ├── Package.swift ├── README.md ├── SmartlookConsentSDK.podspec ├── SmartlookConsentSDK.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── SmartlookConsentSDK.xcscheme ├── SmartlookConsentSDK.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist └── Sources/ ├── Info.plist ├── SmartlookConsentSDK+Consent.swift ├── SmartlookConsentSDK+Notification.swift ├── SmartlookConsentSDK+ObjC.swift ├── SmartlookConsentSDK.h ├── SmartlookConsentSDK.swift └── UI/ ├── Cells/ │ ├── ButtonCell.swift │ ├── ButtonCellDelegateProtocol.swift │ ├── ConsentCell.swift │ ├── ConsentCellDelegateProtocol.swift │ ├── HeaderCell.swift │ └── TopBorderCell.swift ├── ControlPanel.storyboard └── ControlPanelViewController.swift