gitextract_7_zppekp/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Doc/ │ └── Properties.md ├── Gaikan/ │ ├── Gaikan.h │ ├── Helpers/ │ │ ├── AssociatedObject.swift │ │ ├── CGPoint+Helpers.swift │ │ ├── Dictionary+Helpers.swift │ │ ├── NSAttributedString+Style.swift │ │ ├── NSLayoutAttribute+Helpers.swift │ │ ├── NSLayoutRelation+Helpers.swift │ │ ├── NSShadow+Helpers.swift │ │ ├── Optional+Helpers.swift │ │ ├── UIColor+Helpers.swift │ │ ├── UIImage+Helpers.swift │ │ └── UIView+Helpers.swift │ ├── Info.plist │ ├── InterfaceBuilder/ │ │ └── UIView+InterfaceBuilder.swift │ ├── Property/ │ │ ├── Gradient.swift │ │ ├── Property.swift │ │ └── Value/ │ │ ├── Background.swift │ │ ├── Border.swift │ │ ├── Constraint.swift │ │ ├── Corners.swift │ │ └── Side.swift │ ├── Style/ │ │ ├── Stylable.swift │ │ ├── Style.swift │ │ ├── StylePseudoState.swift │ │ ├── StyleRule+DirectAccess.swift │ │ ├── StyleRule.swift │ │ └── StyleState.swift │ ├── Theme/ │ │ └── Theme.swift │ └── UIKit/ │ ├── Extension/ │ │ ├── UIControl.swift │ │ ├── UILabel.swift │ │ ├── UINavigationBar.swift │ │ ├── UISwitch.swift │ │ └── UIView.swift │ ├── Layer/ │ │ ├── BackgroundLayer.swift │ │ ├── BorderLayer.swift │ │ └── Layer.swift │ ├── Renderer/ │ │ ├── ConstraintRenderer.swift │ │ └── ViewStyleRenderer.swift │ └── VirtualView.swift ├── Gaikan.podspec ├── Gaikan.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Gaikan.xcscheme ├── Gaikan.xcworkspace/ │ └── contents.xcworkspacedata ├── GaikanTests/ │ ├── GaikanTests.swift │ ├── Info.plist │ ├── Style/ │ │ ├── StyleRuleSpec.swift │ │ └── StyleSpec.swift │ ├── Swift/ │ │ └── Extension/ │ │ └── DictionarySpec.swift │ └── UIKit/ │ ├── Extension/ │ │ ├── UILabelSpec.swift │ │ ├── UINavigationBarSpec.swift │ │ └── UIViewSpec.swift │ └── Renderer/ │ └── ConstraintRendererSpec.swift ├── LICENSE ├── Podfile ├── README.md └── Sample/ ├── AppDelegate.swift ├── Assets.xcassets/ │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Contents.json │ ├── background.imageset/ │ │ └── Contents.json │ └── logo.imageset/ │ └── Contents.json ├── Base.lproj/ │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomView.swift ├── Info.plist ├── Theme/ │ ├── Gradient.swift │ ├── SampleTheme.swift │ ├── UIColor.swift │ └── UIFont.swift └── ViewController.swift