You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+47-8
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
Neon is built around how user interfaces are naturally designed - primary views are anchored to the sides / corners of the screen, and secondary views are laid out relative to them. Views expand and shrink to fill the screen, so building dynamic layouts that look great on the smallest phones all the way up to biggest tablets is quick and easy. No more springs and struts. No more whacky visual format language. No more auto layout contraints. We're not robots, so why should we build our UIs like we are?
6
6
7
-
#### More will be coming very soon, so stay tuned! In the meantime, here's an intentionally convoluted example to show how easy it is to build very complex and dynamic layouts with Neon. The following was created with only *20 lines of code*. That's one line of code per view!
7
+
#### More will be coming very soon, so stay tuned! In the meantime, here's an intentionally convoluted example to show how easy it is to build very complex and dynamic layouts with Neon. The following layout was created with only *20 lines of code*. That's one line of code per view!
8
8
9
9

10
10
@@ -111,7 +111,7 @@ view12.align(.ToTheLeftMatchingTop, relativeTo: anchorView, padding: padding, wi
111
111
112
112
## Align and fill
113
113
114
-
You don't always know or want to specify the size of a view that you want to place relative to another. You may want to fill the width, height, or the entire rest of the superview after aligning with the sibling. Using `alignAndFillWidth()`, `alignAndFillHeight()`, and `alignAndFill()`, you can do just that! Combined with the different alignment types discussed earlier, we're starting to see how more complex layouts can be built very easily:
114
+
You don't always know or what to specify the size of a view that you want to layout relative to another, but rather you want to either fill the width, height, or the entire rest of the superview, after aligning with the sibling. Combined with all the different alignment types discussed earlier, we're starting to see how more complex layouts can be built very easily:
@@ -121,14 +121,53 @@ view6.alignAndFill(align: .ToTheLeftMatchingTop, relativeTo: view5, padding: pad
121
121
122
122

123
123
124
-
## Todo
125
124
126
-
-[ ] Finish initial implementation
127
-
-[ ] README documentation
128
-
-[ ] Code documentation
129
-
-[ ] Code coverage
125
+
## Align between
126
+
127
+
Sometimes you want a view to sit between to other views, filling the space between them. Using alignBetweenHorizontal() and alignBetweenVertical(), doing that is super easy! Choose one of your sibling views you want to align your view relative to and pass that in as your `primaryView`. We will use the specified `align` parameter to match that `primaryView` appropriately, and automatically fill either the horizontal or vertical span between the it and the `secondaryView`.

137
+
138
+
139
+
## Grouping
140
+
141
+
Another common use-case is the *grouping* of sibling views, aligned in a row or column. Using what we've already learned about anchoring views in the center, in a corner, or against an edge, we can also do the same with groups of views!
142
+
143
+
The primary difference with grouping, is that it is done by the *parent view,* or `superview` of a group of views. For example, let's let two different views center a group of their subviews in each of the two different `Group` configurations, `.Horizontal` and `.Vertical`:
0 commit comments