-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dark Mode #81
Comments
Hello! I did an implementation to get around this problem, but I believe it is not one of the best. func setupInfinityScroll () {
// ...
self.tableView.addInfiniteScroll { (tableView) in
self.changeColorActivityIndicator(at: tableView)
self.presenter!.requestNewDataExpandList()
}
}
func changeColorActivityIndicator(at tableView: UITableView) {
if #available(iOS 11.0, *) {
for item in tableView.subviews {
if let activityIndicator = item as? UIActivityIndicatorView {
activityIndicator.color = UIColor(named: "LoadingColor")
}
}
}
} Where |
Bummer, in the meantime I suggest to set your own indicator view, i.e:
@Tiago-Amaral |
Unable to see loading view on dark mode
The text was updated successfully, but these errors were encountered: