We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9a06a commit 4ea6eccCopy full SHA for 4ea6ecc
src/TableView.cs
@@ -1334,13 +1334,16 @@ private void EnsureCellsStyle()
1334
}
1335
1336
#if !WINDOWS
1337
+ /// <summary>
1338
+ /// Ensures the cells are created.
1339
+ /// </summary>
1340
internal void EnsureCells()
1341
{
1342
foreach (var row in _rows)
1343
1344
row.EnsureCells();
1345
- }
1346
+ }
1347
#endif
1348
1349
#if WINDOWS
src/TableViewCellsPresenter.cs
@@ -38,7 +38,9 @@ protected override void OnApplyTemplate()
38
TableView = TableViewRow?.TableView;
39
40
41
- TableView?.EnsureCells();
+ TableView?.EnsureCells();
42
+#else
43
+ TableViewRow?.EnsureCells();
44
45
EnsureGridLines();
46
0 commit comments