Skip to content

Commit c014385

Browse files
committed
fxied cell focus issue on Uno
1 parent 163ce18 commit c014385

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/TableViewCell.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,14 @@ internal void SetElement()
326326
}
327327

328328
Content = element;
329+
330+
#if !WINDOWS
331+
DispatcherQueue.TryEnqueue(async () =>
332+
{
333+
await Task.Delay(20);
334+
Focus(FocusState.Pointer);
335+
});
336+
#endif
329337
}
330338

331339
/// <summary>

0 commit comments

Comments
 (0)