We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 611c755 commit b08a5e0Copy full SHA for b08a5e0
README.md
@@ -69,8 +69,8 @@ flexboxLayout.setFlexDirection(FlexDirection.ROW);
69
70
View view = flexboxLayout.getChildAt(0);
71
FlexboxLayout.LayoutParams lp = (FlexboxLayout.LayoutParams) view.getLayoutParams();
72
-lp.order = -1;
73
-lp.flexGrow = 2;
+lp.setOrder(-1);
+lp.setFlexGrow(2);
74
view.setLayoutParams(lp);
75
```
76
0 commit comments