Skip to content

Commit 04c1132

Browse files
Hristo HristovHristo Hristov
authored andcommitted
Fix broken merge conflict
1 parent 28f1a58 commit 04c1132

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tns-core-modules/ui/core/view/view.ios.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { ios as iosBackground, Background } from "../../styling/background";
1111
// HACK: Webpack. Use a fully-qualified import to allow resolve.extensions(.ios.js) to
1212
// kick in. `../utils` doesn't seem to trigger the webpack extensions mechanism.
1313
import * as uiUtils from "tns-core-modules/ui/utils";
14+
import { ios as iosUtils } from "../../../utils/utils";
1415
import {
1516
Visibility,
1617
visibilityProperty, opacityProperty,

tns-core-modules/ui/page/page.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ export class Page extends PageBase {
434434
public onLayout(left: number, top: number, right: number, bottom: number) {
435435
const { width: actionBarWidth, height: actionBarHeight } = this.actionBar._getActualSize;
436436
View.layoutChild(this, this.actionBar, 0, 0, actionBarWidth, actionBarHeight);
437-
View.layoutChild(this, this.layoutView, 0, top, right - left, bottom);
437+
View.layoutChild(this, this.layoutView, 0, 0, right - left, bottom - top);
438438
}
439439

440440
public _addViewToNativeVisualTree(child: View, atIndex: number): boolean {

0 commit comments

Comments
 (0)