Various fixes

This commit is contained in:
Ilya Laktyushin
2023-02-07 05:09:34 +04:00
parent f56320215b
commit f1f4eefcbf
12 changed files with 14 additions and 27 deletions

View File

@@ -81,7 +81,7 @@ public final class PageIndicatorComponent: Component {
private final class PageIndicatorView: UIView {
var displayCount: Int {
return min(11, self.pageCount)
return min(12, self.pageCount)
}
var dotSize: CGFloat = 8.0
var dotSpace: CGFloat = 10.0
@@ -403,5 +403,3 @@ private class ItemView: UIView {
})
}
}