gitextract_o_kfc_hq/ ├── .codecov.yml ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── Example/ │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── SwiftEntryKit.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── Pods-SwiftEntryKitDemo/ │ │ │ ├── Pods-SwiftEntryKitDemo-Info.plist │ │ │ ├── Pods-SwiftEntryKitDemo-acknowledgements.markdown │ │ │ ├── Pods-SwiftEntryKitDemo-acknowledgements.plist │ │ │ ├── Pods-SwiftEntryKitDemo-dummy.m │ │ │ ├── Pods-SwiftEntryKitDemo-frameworks.sh │ │ │ ├── Pods-SwiftEntryKitDemo-umbrella.h │ │ │ ├── Pods-SwiftEntryKitDemo.debug.xcconfig │ │ │ ├── Pods-SwiftEntryKitDemo.modulemap │ │ │ └── Pods-SwiftEntryKitDemo.release.xcconfig │ │ ├── Pods-SwiftEntryKitTests/ │ │ │ ├── Pods-SwiftEntryKitTests-Info.plist │ │ │ ├── Pods-SwiftEntryKitTests-acknowledgements.markdown │ │ │ ├── Pods-SwiftEntryKitTests-acknowledgements.plist │ │ │ ├── Pods-SwiftEntryKitTests-dummy.m │ │ │ ├── Pods-SwiftEntryKitTests-frameworks.sh │ │ │ ├── Pods-SwiftEntryKitTests-umbrella.h │ │ │ ├── Pods-SwiftEntryKitTests.debug.xcconfig │ │ │ ├── Pods-SwiftEntryKitTests.modulemap │ │ │ └── Pods-SwiftEntryKitTests.release.xcconfig │ │ └── SwiftEntryKit/ │ │ ├── SwiftEntryKit-Info.plist │ │ ├── SwiftEntryKit-dummy.m │ │ ├── SwiftEntryKit-prefix.pch │ │ ├── SwiftEntryKit-umbrella.h │ │ ├── SwiftEntryKit.debug.xcconfig │ │ ├── SwiftEntryKit.modulemap │ │ └── SwiftEntryKit.release.xcconfig │ ├── SwiftEntryKit/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── DemoAppInfo.plist │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── audience-band-blur-518389.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── battery/ │ │ │ │ ├── Contents.json │ │ │ │ ├── battery0.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── battery1.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── battery2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── battery3.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── battery4.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── battery5.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iPhone Icons/ │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_bottom_float.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ic_bottom_popup.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ic_bottom_toast.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ic_sb_note.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ic_top_float.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ic_top_note.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── ic_top_toast.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_apple.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_books.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_coffee_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_done_all_dark_48pt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_done_all_light_48pt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_fast_forward_white.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_fast_rewind_white.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_info_outline.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_lock_dark.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_lock_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_madi_profile.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_mail_dark.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_mail_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_pause_circle_outline_white_36pt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_pause_white.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_phone_dark.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_phone_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_pizza.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_star_selected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_star_unselected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_success.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_user_dark.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_user_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ic_wifi.imageset/ │ │ │ │ └── Contents.json │ │ │ └── paper-plane-light.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Playground/ │ │ │ ├── Cells/ │ │ │ │ ├── AnimationSelectionTableViewCell.swift │ │ │ │ ├── BackgroundStyleSelectionTableViewCell.swift │ │ │ │ ├── BorderSelectionTableViewCell.swift │ │ │ │ ├── DisplayDurationSelectionTableViewCell.swift │ │ │ │ ├── HapticFeedbackSelectionTableViewCell.swift │ │ │ │ ├── HeightSelectionTableViewCell.swift │ │ │ │ ├── MaxWidthSelectionTableViewCell.swift │ │ │ │ ├── PositionSelectionTableViewCell.swift │ │ │ │ ├── PrioritySelectionTableViewCell.swift │ │ │ │ ├── RoundCornersSelectionTableViewCell.swift │ │ │ │ ├── SafeAreaSelectionTableViewCell.swift │ │ │ │ ├── ScrollSelectionTableViewCell.swift │ │ │ │ ├── SelectionHeaderView.swift │ │ │ │ ├── SelectionTableViewCell.swift │ │ │ │ ├── ShadowSelectionTableViewCell.swift │ │ │ │ ├── UserInteractionSelectionTableViewCell.swift │ │ │ │ ├── WidthSelectionTableViewCell.swift │ │ │ │ └── WindowLevelSelectionTableViewCell.swift │ │ │ ├── EntryAttributeWrapper.swift │ │ │ └── PlaygroundViewController.swift │ │ ├── Presets/ │ │ │ ├── FormFieldPresetFactory.swift │ │ │ ├── PresetTableViewCell.swift │ │ │ ├── PresetsData/ │ │ │ │ ├── PresetDescription.swift │ │ │ │ └── PresetsDataSource.swift │ │ │ ├── PresetsViewController.swift │ │ │ └── Samples/ │ │ │ ├── ExampleNavigationController/ │ │ │ │ ├── ContactsViewController.swift │ │ │ │ ├── ContactsViewController.xib │ │ │ │ ├── DescriptionViewController.swift │ │ │ │ ├── DescriptionViewController.xib │ │ │ │ └── ExampleNavigationViewController.swift │ │ │ ├── ExampleViewController/ │ │ │ │ └── ExampleViewController.swift │ │ │ └── NibExampleView/ │ │ │ ├── NibExampleView.swift │ │ │ └── NibExampleView.xib │ │ ├── SwiftEntryKit.h │ │ └── Utils/ │ │ ├── CGRect+Utils.swift │ │ ├── Font.swift │ │ ├── Object+ClassName.swift │ │ ├── UIColor+Utils.swift │ │ ├── UIScreen+Utils.swift │ │ └── UIView+Nib.swift │ ├── SwiftEntryKit.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── SwiftEntryKit.xcscheme │ │ └── SwiftEntryKitDemo.xcscheme │ ├── SwiftEntryKit.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── Tests/ │ ├── AttributesCreationTest.swift │ └── Info.plist ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Package.swift ├── README.md ├── Source/ │ ├── Extensions/ │ │ ├── QuickLayout/ │ │ │ ├── QLCompatibility.swift │ │ │ ├── QLUtils.swift │ │ │ ├── UIView+QLContentWrap.swift │ │ │ ├── UIView+QuickLayout.swift │ │ │ └── UIViewArray+QuickLayout.swift │ │ ├── UIApplication+EKAppearance.swift │ │ ├── UIColor+Utils.swift │ │ ├── UIEdgeInsets+Utils.swift │ │ ├── UIRectCorner+Short.swift │ │ ├── UIView+Shadow.swift │ │ └── UIView+Utils.swift │ ├── Infra/ │ │ ├── EKBackgroundView.swift │ │ ├── EKContentView.swift │ │ ├── EKEntryView.swift │ │ ├── EKRootViewController.swift │ │ ├── EKStyleView.swift │ │ ├── EKWindow.swift │ │ ├── EKWindowProvider.swift │ │ ├── EKWrapperView.swift │ │ └── EntryCachingHeuristic.swift │ ├── MessageViews/ │ │ ├── EKAlertMessageView.swift │ │ ├── EKFormMessageView.swift │ │ ├── EKMessageContentView.swift │ │ ├── EKNotificationMessageView.swift │ │ ├── EKPopUpMessageView.swift │ │ ├── EKRatingMessageView.swift │ │ ├── EKSimpleMessageView.swift │ │ ├── MessagesUtils/ │ │ │ ├── EKButtonBarView.swift │ │ │ ├── EKButtonView.swift │ │ │ ├── EKRatingSymbolView.swift │ │ │ ├── EKRatingSymbolsContainerView.swift │ │ │ ├── EKTextField.swift │ │ │ └── EntryAppearanceDescriptor.swift │ │ └── Notes/ │ │ ├── EKAccessoryNoteMessageView.swift │ │ ├── EKImageNoteMessageView.swift │ │ ├── EKNoteMessageView.swift │ │ ├── EKProcessingNoteMessageView.swift │ │ └── EKXStatusBarMessageView.swift │ ├── Model/ │ │ ├── EKAlertMessage.swift │ │ ├── EKColor.swift │ │ ├── EKNotificationMessage.swift │ │ ├── EKPopUpMessage.swift │ │ ├── EKProperty.swift │ │ ├── EKRatingMessage.swift │ │ ├── EKSimpleMessage.swift │ │ └── EntryAttributes/ │ │ ├── EKAttributes+Animation.swift │ │ ├── EKAttributes+BackgroundStyle.swift │ │ ├── EKAttributes+DisplayMode.swift │ │ ├── EKAttributes+Duration.swift │ │ ├── EKAttributes+FrameStyle.swift │ │ ├── EKAttributes+HapticFeedback.swift │ │ ├── EKAttributes+LifecycleActions.swift │ │ ├── EKAttributes+PopBehavior.swift │ │ ├── EKAttributes+Position.swift │ │ ├── EKAttributes+PositionConstraints.swift │ │ ├── EKAttributes+Precedence.swift │ │ ├── EKAttributes+Presets.swift │ │ ├── EKAttributes+Scroll.swift │ │ ├── EKAttributes+Shadow.swift │ │ ├── EKAttributes+StatusBar.swift │ │ ├── EKAttributes+UserInteraction.swift │ │ ├── EKAttributes+Validations.swift │ │ ├── EKAttributes+WindowLevel.swift │ │ └── EKAttributes.swift │ ├── SwiftEntryKit.swift │ └── Utils/ │ ├── GradientView.swift │ ├── HapticFeedbackGenerator.swift │ └── UIView+Responder.swift └── SwiftEntryKit.podspec