|
1 | 1 | <p align="center"> |
2 | | - <a href="https://github.com/lucdion/LayoutFrameworkBenchmark"><img src="docs_markdown/images/logo.png" alt="FlexLayout" width="270"/></a> |
| 2 | + <a href="https://github.com/layoutBox/LayoutFrameworkBenchmark"><img src="docs_markdown/images/logo.png" alt="FlexLayout" width="270"/></a> |
3 | 3 | </p> |
4 | 4 |
|
5 | 5 | <h1 align="center" style="color: #376C9D; font-family: Arial Black, Gadget, sans-serif; font-size: 2em">Layout Framework Benchmark</h1> |
6 | 6 |
|
7 | 7 | <p align="center"> |
8 | 8 | <a href=""><img src="https://img.shields.io/cocoapods/p/FlexLayout.svg?style=flat" /></a> |
9 | | - <a href="https://travis-ci.org/lucdion/LayoutFrameworkBenchmark"><img src="https://travis-ci.org/lucdion/LayoutFrameworkBenchmark.svg?branch=master" /></a> |
10 | | - <a href="https://raw.githubusercontent.com/lucdion/LayoutFrameworkBenchmark/master/LICENSE"><img src="https://img.shields.io/badge/license-New%20BSD-blue.svg?style=flat" /></a> |
| 9 | + <a href="https://travis-ci.org/layoutBox/LayoutFrameworkBenchmark"><img src="https://travis-ci.org/layoutBox/LayoutFrameworkBenchmark.svg?branch=master" /></a> |
| 10 | + <a href="https://raw.githubusercontent.com/layoutBox/LayoutFrameworkBenchmark/master/LICENSE"><img src="https://img.shields.io/badge/license-New%20BSD-blue.svg?style=flat" /></a> |
11 | 11 | </p> |
12 | 12 |
|
13 | 13 | <br> |
@@ -36,27 +36,27 @@ Choosing the right layout framework for your project is an important decision. T |
36 | 36 |
|
37 | 37 | * **Auto layout** |
38 | 38 | Apple's auto layout constraints. |
39 | | -[Auto layout benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/AutoLayout/FeedItemAutoLayoutView.swift) |
| 39 | +[Auto layout benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/AutoLayout/FeedItemAutoLayoutView.swift) |
40 | 40 |
|
41 | | -* [**FlexLayout**](https://github.com/lucdion/FlexLayout) |
| 41 | +* [**FlexLayout**](https://github.com/layoutBox/FlexLayout) |
42 | 42 | FlexLayout adds a nice Swift interface to the highly optimized [Yoga](https://github.com/facebook/yoga) flexbox implementation. Concise, intuitive & chainable syntax. |
43 | | -[FlexLayout benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/FlexLayout/FeedItemFlexLayoutView.swift) |
| 43 | +[FlexLayout benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/FlexLayout/FeedItemFlexLayoutView.swift) |
44 | 44 |
|
45 | 45 | * [**LayoutKit**](https://github.com/linkedin/LayoutKit) |
46 | 46 | LayoutKit is a fast view layout library for iOS, macOS, and tvOS. |
47 | | -[LayoutKit benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/tree/master/LayoutFrameworkBenchmark/Benchmarks/LayoutKit) |
| 47 | +[LayoutKit benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/tree/master/LayoutFrameworkBenchmark/Benchmarks/LayoutKit) |
48 | 48 |
|
49 | 49 | * **Manual layout** |
50 | 50 | Layout is done by setting UIView's frame property directly. This implementation comes directly from the LayoutKit benchmark. |
51 | | -[Manual layout benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/ManualLayout/FeedItemManualView.swift) |
| 51 | +[Manual layout benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/ManualLayout/FeedItemManualView.swift) |
52 | 52 |
|
53 | 53 | * [**PinLayout**](https://github.com/mirego/PinLayout) |
54 | 54 | Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable. |
55 | | -[PinLayout benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/PinLayout/FeedItemPinLayoutView.swift) |
| 55 | +[PinLayout benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/PinLayout/FeedItemPinLayoutView.swift) |
56 | 56 |
|
57 | 57 | * **UIStackViews** |
58 | 58 | Apple's UIStackViews. |
59 | | -[UIStackViews benchmark's source code](https://github.com/lucdion/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/UIStackView/FeedItemUIStackView.swift) |
| 59 | +[UIStackViews benchmark's source code](https://github.com/layoutBox/LayoutFrameworkBenchmark/blob/master/LayoutFrameworkBenchmark/Benchmarks/UIStackView/FeedItemUIStackView.swift) |
60 | 60 |
|
61 | 61 | * [**Yoga**](https://github.com/facebook/yoga) |
62 | 62 | Yoga's performance hasn't been tested directly, but FlexLayout has. FlexLayout is a light Swift interface for Yoga. |
@@ -137,7 +137,7 @@ The **X axis** in following charts indicates the **number of cells** contained f |
137 | 137 | <br> |
138 | 138 |
|
139 | 139 | ## Contributing, comments, ideas, suggestions, issues, .... <a name="comments"></a> |
140 | | -For any **comments**, **ideas**, **suggestions**, simply open an [issue](https://github.com/lucdion/LayoutFrameworkBenchmark/issues). |
| 140 | +For any **comments**, **ideas**, **suggestions**, simply open an [issue](https://github.com/layoutBox/LayoutFrameworkBenchmark/issues). |
141 | 141 |
|
142 | 142 | If you'd like to contribute by adding other layout framework, you're welcomed! |
143 | 143 |
|
|
0 commit comments