Fix dp vs dip conversions in iOS for errors of tests

This commit is contained in:
Panayot Cankov
2017-03-07 17:28:55 +02:00
parent 9f1ebc11ca
commit 6d6564af16
7 changed files with 26 additions and 19 deletions

View File

@@ -141,7 +141,7 @@ class UITableViewDelegateImpl extends NSObject implements UITableViewDelegate {
height = owner._prepareCell(cell, indexPath);
}
return height;
return layout.toDeviceIndependentPixels(height);
}
}