Commit 9e784f0c authored by Adam Barth's avatar Adam Barth

Merge pull request #1500 from abarth/align_docs

Update the Align docs
parents a08c2019 fade43ee
...@@ -211,7 +211,7 @@ class RenderPadding extends RenderShiftedBox { ...@@ -211,7 +211,7 @@ class RenderPadding extends RenderShiftedBox {
/// ///
/// For example, to align a box at the bottom right, you would pass this box a /// For example, to align a box at the bottom right, you would pass this box a
/// tight constraint that is bigger than the child's natural size, /// tight constraint that is bigger than the child's natural size,
/// with the alignment set to (1.0, 1.0). /// with an alignment of [const FractionalOffset(1.0, 1.0)].
/// ///
/// By default, sizes to be as big as possible in both axes. If either axis is /// By default, sizes to be as big as possible in both axes. If either axis is
/// unconstrained, then in that direction it will be sized to fit the child's /// unconstrained, then in that direction it will be sized to fit the child's
......
...@@ -359,7 +359,12 @@ class Padding extends OneChildRenderObjectWidget { ...@@ -359,7 +359,12 @@ class Padding extends OneChildRenderObjectWidget {
/// ///
/// For example, to align a box at the bottom right, you would pass this box a /// For example, to align a box at the bottom right, you would pass this box a
/// tight constraint that is bigger than the child's natural size, /// tight constraint that is bigger than the child's natural size,
/// with horizontal and vertical set to 1.0. /// with an alignment of [const FractionalOffset(1.0, 1.0)].
///
/// By default, sizes to be as big as possible in both axes. If either axis is
/// unconstrained, then in that direction it will be sized to fit the child's
/// dimensions. Using widthFactor and heightFactor you can force this latter
/// behaviour in all cases.
class Align extends OneChildRenderObjectWidget { class Align extends OneChildRenderObjectWidget {
Align({ Align({
Key key, Key key,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment