Index: sky/sdk/lib/framework/fn2.dart |
diff --git a/sky/sdk/lib/framework/fn2.dart b/sky/sdk/lib/framework/fn2.dart |
index a651dd7bb62fca29032cc0ec7a6fe95f59f95bba..4aa77fa26466d5990f156e8252869a663ef57efa 100644 |
--- a/sky/sdk/lib/framework/fn2.dart |
+++ b/sky/sdk/lib/framework/fn2.dart |
@@ -719,16 +719,19 @@ class FlexContainer extends MultiChildRenderObjectWrapper { |
RenderFlex createNode() => new RenderFlex(direction: this.direction); |
final FlexDirection direction; |
+ final FlexJustifyContent justifyContent; |
FlexContainer({ |
Object key, |
List<UINode> children, |
- this.direction: FlexDirection.horizontal |
+ this.direction: FlexDirection.horizontal, |
+ this.justifyContent: FlexJustifyContent.flexStart |
}) : super(key: key, children: children); |
void syncRenderObject(UINode old) { |
super.syncRenderObject(old); |
root.direction = direction; |
+ root.justifyContent = justifyContent; |
} |
} |