├── .gitignore ├── .ruby-version ├── .swift-version ├── .swiftformat ├── .travis.yml ├── CompositionalLayoutViewController.podspec ├── CompositionalLayoutViewController ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CollectionViewSection.swift │ ├── CompositionalLayoutViewController.swift │ ├── HighlightableCell.swift │ ├── SectionProvider.swift │ └── SupplementaryItem.swift ├── Example ├── CompositionalLayoutViewController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── CompositionalLayoutViewController-Example.xcscheme │ │ └── CompositionalLayoutViewController_Tests.xcscheme ├── CompositionalLayoutViewController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CompositionalLayoutViewController │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Class │ │ ├── ListViewController.swift │ │ ├── SampleViewController.swift │ │ ├── Section │ │ │ ├── ButtonSection │ │ │ │ ├── ButtonCell.swift │ │ │ │ ├── ButtonCell.xib │ │ │ │ └── ButtonSection.swift │ │ │ ├── ListSection.swift │ │ │ └── TextFormSection │ │ │ │ ├── TextForm.swift │ │ │ │ ├── TextFormCell.swift │ │ │ │ ├── TextFormCell.xib │ │ │ │ ├── TextFormSection.swift │ │ │ │ └── TextFormViewModel.swift │ │ └── String+Validation.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CompositionalLayoutViewController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── SwiftFormat │ │ ├── CommandLineTool │ │ │ └── swiftformat │ │ ├── LICENSE.md │ │ └── README.md │ └── Target Support Files │ │ ├── CompositionalLayoutViewController │ │ ├── CompositionalLayoutViewController-Info.plist │ │ ├── CompositionalLayoutViewController-dummy.m │ │ ├── CompositionalLayoutViewController-prefix.pch │ │ ├── CompositionalLayoutViewController-umbrella.h │ │ ├── CompositionalLayoutViewController.debug.xcconfig │ │ ├── CompositionalLayoutViewController.modulemap │ │ └── CompositionalLayoutViewController.release.xcconfig │ │ ├── Pods-CompositionalLayoutViewController_Example │ │ ├── Pods-CompositionalLayoutViewController_Example-Info.plist │ │ ├── Pods-CompositionalLayoutViewController_Example-acknowledgements.markdown │ │ ├── Pods-CompositionalLayoutViewController_Example-acknowledgements.plist │ │ ├── Pods-CompositionalLayoutViewController_Example-dummy.m │ │ ├── Pods-CompositionalLayoutViewController_Example-frameworks.sh │ │ ├── Pods-CompositionalLayoutViewController_Example-umbrella.h │ │ ├── Pods-CompositionalLayoutViewController_Example.debug.xcconfig │ │ ├── Pods-CompositionalLayoutViewController_Example.modulemap │ │ └── Pods-CompositionalLayoutViewController_Example.release.xcconfig │ │ ├── Pods-CompositionalLayoutViewController_Tests │ │ ├── Pods-CompositionalLayoutViewController_Tests-Info.plist │ │ ├── Pods-CompositionalLayoutViewController_Tests-acknowledgements.markdown │ │ ├── Pods-CompositionalLayoutViewController_Tests-acknowledgements.plist │ │ ├── Pods-CompositionalLayoutViewController_Tests-dummy.m │ │ ├── Pods-CompositionalLayoutViewController_Tests-umbrella.h │ │ ├── Pods-CompositionalLayoutViewController_Tests.debug.xcconfig │ │ ├── Pods-CompositionalLayoutViewController_Tests.modulemap │ │ └── Pods-CompositionalLayoutViewController_Tests.release.xcconfig │ │ └── SwiftFormat │ │ ├── SwiftFormat.debug.xcconfig │ │ └── SwiftFormat.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Gemfile ├── Gemfile.lock ├── Image └── ss.png ├── LICENSE ├── Package.swift ├── README.md ├── _Pods.xcodeproj └── run_swift_format.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.7 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/.swiftformat -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /CompositionalLayoutViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController.podspec -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/CollectionViewSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController/Classes/CollectionViewSection.swift -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/CompositionalLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController/Classes/CompositionalLayoutViewController.swift -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/HighlightableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController/Classes/HighlightableCell.swift -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/SectionProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController/Classes/SectionProvider.swift -------------------------------------------------------------------------------- /CompositionalLayoutViewController/Classes/SupplementaryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/CompositionalLayoutViewController/Classes/SupplementaryItem.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcodeproj/xcshareddata/xcschemes/CompositionalLayoutViewController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcodeproj/xcshareddata/xcschemes/CompositionalLayoutViewController-Example.xcscheme -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcodeproj/xcshareddata/xcschemes/CompositionalLayoutViewController_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcodeproj/xcshareddata/xcschemes/CompositionalLayoutViewController_Tests.xcscheme -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/ListViewController.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/SampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/SampleViewController.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonCell.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonCell.xib -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/ButtonSection/ButtonSection.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/ListSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/ListSection.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextForm.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormCell.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormCell.xib -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormSection.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/Section/TextFormSection/TextFormViewModel.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Class/String+Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Class/String+Validation.swift -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/Info.plist -------------------------------------------------------------------------------- /Example/CompositionalLayoutViewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/CompositionalLayoutViewController/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CompositionalLayoutViewController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Local Podspecs/CompositionalLayoutViewController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SwiftFormat/CommandLineTool/swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/SwiftFormat/CommandLineTool/swiftformat -------------------------------------------------------------------------------- /Example/Pods/SwiftFormat/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/SwiftFormat/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/SwiftFormat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/SwiftFormat/README.md -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/CompositionalLayoutViewController/CompositionalLayoutViewController.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Example/Pods-CompositionalLayoutViewController_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/Pods-CompositionalLayoutViewController_Tests/Pods-CompositionalLayoutViewController_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftFormat/SwiftFormat.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/SwiftFormat/SwiftFormat.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftFormat/SwiftFormat.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Pods/Target Support Files/SwiftFormat/SwiftFormat.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem "cocoapods" 5 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Image/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Image/ss.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /run_swift_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneinc-jp/CompositionalLayoutViewController/HEAD/run_swift_format.sh --------------------------------------------------------------------------------