mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
committed by
Nathan Walker
parent
9d4f1382f1
commit
621c8302f2
@@ -154,11 +154,11 @@ public class StackLayout extends LayoutBase {
|
||||
|
||||
switch (verticalGravity) {
|
||||
case Gravity.CENTER_VERTICAL:
|
||||
childTop = (bottom - top - this._totalLength) / 2 + paddingTop - paddingBottom;
|
||||
childTop = (bottom - top - this._totalLength) / 2 + paddingTop;
|
||||
break;
|
||||
|
||||
case Gravity.BOTTOM:
|
||||
childTop = bottom - top - this._totalLength + paddingTop - paddingBottom;
|
||||
childTop = bottom - top - this._totalLength + paddingTop;
|
||||
break;
|
||||
|
||||
case Gravity.TOP:
|
||||
@@ -197,11 +197,11 @@ public class StackLayout extends LayoutBase {
|
||||
|
||||
switch (horizontalGravity) {
|
||||
case Gravity.CENTER_HORIZONTAL:
|
||||
childLeft = (right - left - this._totalLength) / 2 + paddingLeft - paddingRight;
|
||||
childLeft = (right - left - this._totalLength) / 2 + paddingLeft;
|
||||
break;
|
||||
|
||||
case Gravity.RIGHT:
|
||||
childLeft = right - left - this._totalLength + paddingLeft - paddingRight;
|
||||
childLeft = right - left - this._totalLength + paddingLeft;
|
||||
break;
|
||||
|
||||
case Gravity.LEFT:
|
||||
|
||||
Reference in New Issue
Block a user