You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add UIScrollViewAccessibilityDelegate support to FunctionalTableData and FunctionalCollectionData, allowing control over how the current scroll position is read out by VoiceOver.
Enable support for duplicate section or row keys output as well as including that information as part of the FunctionalTableData or FunctionalCollectionData exception.
Enables support for specifying the layout of each edge of a cell. The usage is similar to the previous CombinedLayout API, but extended to all four corners. Example:
// Layout pinned to the edges of the contentView
publictypealiasEdgeBasedTableItemLayout=Layout<EdgeLayout.Top,EdgeLayout.Leading,EdgeLayout.Bottom,EdgeLayout.Trailing>
// Layout respecting the margins of the contentView
publictypealiasLayoutMarginsTableItemLayout=Layout<MarginsLayout.Top,MarginsLayout.Leading,MarginsLayout.Bottom,MarginsLayout.Trailing>The available options are `EdgeLayout`, and `MarginsLayout`. But, you can create your own asyou wish.