Index: sky/sdk/lib/framework/fn2.dart |
diff --git a/sky/sdk/lib/framework/fn2.dart b/sky/sdk/lib/framework/fn2.dart |
index 197f1d0f748de17f18e3209503e00cf4f8aa2f48..9ca123fcf61108d89ec67221dad9ca66b7e1672d 100644 |
--- a/sky/sdk/lib/framework/fn2.dart |
+++ b/sky/sdk/lib/framework/fn2.dart |
@@ -704,6 +704,15 @@ class StackContainer extends MultiChildRenderObjectWrapper { |
: super(key: key, children: children); |
} |
+class StackPositionedChild extends ParentDataNode { |
+ StackPositionedChild(UINode content, { |
+ double top, double right, double bottom, double left |
+ }) : super(content, new StackParentData()..top = top |
+ ..right = right |
+ ..bottom = bottom |
+ ..left = left); |
+} |
+ |
class Paragraph extends RenderObjectWrapper { |
RenderParagraph root; |
RenderParagraph createNode() => new RenderParagraph(text: text); |