Dropping iOS 10 support is not an explicit goal, but it might become necessary at some time in the future. This issue tries to track the things that need to be done when the time comes:
Adopt the use of safeAreaLayoutGuide without availability checks
Since iOS 11 cells with UITableViewCellStyleSubtitle have a different height than cells of other types. Special guards were implemented to deal with this, they can be removed. Examples: UiElementMetrics::tableViewCellSizeForType:(), BoardPositionTableListViewController::tableView:heightForRowAtIndexPath:().
Review other uses of iOS-based availability checks (e.g. if (@available(iOS 11, *)))
Dropping iOS 10 support is not an explicit goal, but it might become necessary at some time in the future. This issue tries to track the things that need to be done when the time comes:
safeAreaLayoutGuide
without availability checksUiElementMetrics::tableViewCellSizeForType:()
,BoardPositionTableListViewController::tableView:heightForRowAtIndexPath:()
.if (@available(iOS 11, *))
)