diff --git a/ui/list-view/list-view.ios.ts b/ui/list-view/list-view.ios.ts index cc9a2adb4..8ea711c89 100644 --- a/ui/list-view/list-view.ios.ts +++ b/ui/list-view/list-view.ios.ts @@ -89,6 +89,18 @@ class UITableViewDelegateImpl extends NSObject implements UITableViewDelegate { if (indexPath.row === this._owner.items.length - 1) { this._owner.notify({ eventName: LOADMOREITEMS, object: this._owner }); } + + if (cell.separatorInset) { + cell.separatorInset = UIEdgeInsetsZero; + } + + if (cell.preservesSuperviewLayoutMargins) { + cell.preservesSuperviewLayoutMargins = false; + } + + if (cell.layoutMargins) { + cell.layoutMargins = UIEdgeInsetsZero; + } } public tableViewWillSelectRowAtIndexPath(tableView: UITableView, indexPath: NSIndexPath): NSIndexPath {