├── .gitignore ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LayoutFrameworkBenchmark.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── dionlu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ └── LayoutFrameworkBenchmark.xcscheme ├── LayoutFrameworkBenchmark.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LayoutFrameworkBenchmark ├── AppDelegate.swift ├── Assets.xcassets │ ├── 20x20.imageset │ │ ├── 20x20.png │ │ └── Contents.json │ ├── 350x200.imageset │ │ ├── 350x200.png │ │ └── Contents.json │ ├── 50x50.imageset │ │ ├── 50x50.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-1024.png │ │ ├── Icon-167.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ └── Icon-76@2x.png │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Benchmarks │ ├── AutoLayout │ │ └── FeedItemAutoLayoutView.swift │ ├── BenchmarkViewController.swift │ ├── CollectionViewController.swift │ ├── DataBinder.swift │ ├── FeedItemData.swift │ ├── FlexLayout │ │ └── FeedItemFlexLayoutView.swift │ ├── LayoutKit │ │ ├── FeedItemLayoutKitView.swift │ │ └── Layouts │ │ │ ├── CircleImagePileLayout.swift │ │ │ ├── DividerStackLayout.swift │ │ │ ├── FeedItemLayout.swift │ │ │ ├── FixedWidthCellCollectionViewLayout.swift │ │ │ ├── HelloWorldAutoLayoutView.swift │ │ │ ├── HelloWorldLayout.swift │ │ │ ├── Info.plist │ │ │ ├── MiniProfileLayout.swift │ │ │ ├── ProfileCardLayout.swift │ │ │ └── SkillsCardLayout.swift │ ├── ManualLayout │ │ └── FeedItemManualView.swift │ ├── NKFrameLayoutKit │ │ └── NKFrameLayoutKitView.swift │ ├── PinLayout │ │ └── FeedItemPinLayoutView.swift │ ├── Stopwatch.swift │ └── UIStackView │ │ └── FeedItemUIStackView.swift ├── FeedItemNotAutoLayoutView.swift ├── FeedItemTextureNode.swift ├── Info.plist └── TextureCollectionViewController.swift ├── Podfile ├── Podfile.lock ├── README.md ├── Tests ├── CellLayoutSpec.swift └── Info.plist └── docs_markdown ├── benchmark_comparison_all.png ├── benchmark_comparison_all_small.png ├── benchmark_iphone13pro.png ├── benchmark_iphone16.png ├── benchmark_iphone5s.png ├── benchmark_iphone6.png ├── benchmark_iphone6s.png ├── benchmark_iphone7.png ├── benchmark_iphonex.png ├── benchmark_iphonexs.png ├── benchmark_result_LayoutKit.png ├── benchmark_result_ManualLayout.png ├── benchmark_result_NKFrameLayoutKit.png ├── benchmark_result_PinLayout.png ├── benchmark_result_Texture.png └── images └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcodeproj/project.xcworkspace/xcuserdata/dionlu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcodeproj/project.xcworkspace/xcuserdata/dionlu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcodeproj/xcshareddata/xcschemes/LayoutFrameworkBenchmark.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcodeproj/xcshareddata/xcschemes/LayoutFrameworkBenchmark.xcscheme -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/AppDelegate.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/20x20.imageset/20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/20x20.imageset/20x20.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/20x20.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/350x200.imageset/350x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/350x200.imageset/350x200.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/350x200.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/350x200.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/50x50.imageset/50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/50x50.imageset/50x50.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/50x50.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/50x50.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/AutoLayout/FeedItemAutoLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/AutoLayout/FeedItemAutoLayoutView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/BenchmarkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/BenchmarkViewController.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/CollectionViewController.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/DataBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/DataBinder.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/FeedItemData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/FeedItemData.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/FlexLayout/FeedItemFlexLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/FlexLayout/FeedItemFlexLayoutView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/FeedItemLayoutKitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/FeedItemLayoutKitView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/CircleImagePileLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/CircleImagePileLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/DividerStackLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/DividerStackLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/FeedItemLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/FeedItemLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/FixedWidthCellCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/FixedWidthCellCollectionViewLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/HelloWorldAutoLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/HelloWorldAutoLayoutView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/HelloWorldLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/HelloWorldLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/Info.plist -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/MiniProfileLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/MiniProfileLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/ProfileCardLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/ProfileCardLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/SkillsCardLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/LayoutKit/Layouts/SkillsCardLayout.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/ManualLayout/FeedItemManualView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/ManualLayout/FeedItemManualView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/NKFrameLayoutKit/NKFrameLayoutKitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/NKFrameLayoutKit/NKFrameLayoutKitView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/PinLayout/FeedItemPinLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/PinLayout/FeedItemPinLayoutView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/Stopwatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/Stopwatch.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Benchmarks/UIStackView/FeedItemUIStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Benchmarks/UIStackView/FeedItemUIStackView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/FeedItemNotAutoLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/FeedItemNotAutoLayoutView.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/FeedItemTextureNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/FeedItemTextureNode.swift -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/Info.plist -------------------------------------------------------------------------------- /LayoutFrameworkBenchmark/TextureCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/LayoutFrameworkBenchmark/TextureCollectionViewController.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/README.md -------------------------------------------------------------------------------- /Tests/CellLayoutSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Tests/CellLayoutSpec.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /docs_markdown/benchmark_comparison_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_comparison_all.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_comparison_all_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_comparison_all_small.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone13pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone13pro.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone16.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone5s.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone6.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone6s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone6s.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphone7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphone7.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphonex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphonex.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_iphonexs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_iphonexs.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_result_LayoutKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_result_LayoutKit.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_result_ManualLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_result_ManualLayout.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_result_NKFrameLayoutKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_result_NKFrameLayoutKit.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_result_PinLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_result_PinLayout.png -------------------------------------------------------------------------------- /docs_markdown/benchmark_result_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/benchmark_result_Texture.png -------------------------------------------------------------------------------- /docs_markdown/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/HEAD/docs_markdown/images/logo.png --------------------------------------------------------------------------------