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
*1 Partially possible by wrapping it with `ScrollView`. But it isn't likely to work with large set
122
+
of views inside the layout. Because it doesn't consider view recycling.
123
+
124
+
# Supported attributes
125
+
126
+
## Attributes for the FlexboxLayout:
80
127
81
128
*__flexDirection__
82
129
* This attribute determines the direction of the main axis (and the cross axis, perpendicular to the main axis). The direction children items are placed inside the Flexbox layout.
@@ -200,7 +247,7 @@ view.setLayoutParams(lp);
200
247

201
248
202
249
203
-
####Attributes for the children of a FlexboxLayout
250
+
## Attributes for the children of a FlexboxLayout
204
251
205
252
*__layout_order__ (integer)
206
253
* This attribute can change how the ordering of the children views are laid out.
@@ -281,6 +328,8 @@ view.setLayoutParams(lp);
281
328
282
329

283
330
331
+
# Others
332
+
284
333
## Known differences from the original CSS specification
285
334
This library tries to achieve the same capabilities of the original
286
335
[Flexible Box specification](https://www.w3.org/TR/css-flexbox-1) as much as possible,
@@ -317,15 +366,15 @@ equivalent attribute
317
366
## Xamarin Binding
318
367
Xamarin binding is now available on [NuGet](https://www.nuget.org/packages/FlexboxLayoutXamarinBindingAndroid/) thanks to [@btripp](https://github.com/btripp)
319
368
320
-
321
-
## Flexbox Playground demo app
369
+
## Demo apps
370
+
###Flexbox Playground demo app
322
371
The `app` module works as a playground demo app for trying various values for the supported attributes.
323
372
You can install it by
324
373
```
325
374
./gradlew demo-playground:installDebug
326
375
```
327
376
328
-
## Cat gallery demo app
377
+
###Cat gallery demo app
329
378
The `demo-cat-gallery` module showcases the usage of the FlexboxLayoutManager inside the RecyclerView
330
379
that handles various sizes of views aligned nicely regardless of the device width like the
331
380
Google Photo app without loading all the images on the memory.
0 commit comments