We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Saw #86 , but still doesn't work for me, adding the edgesForExtendedLayout = [] make the appbar gray, that's all.
controller.firstDate = Date().subtract(years: 1) controller.lastDate = Date().add(years: 3) controller.selectedDate = self.value controller.scroll(to: self.value ?? Date(), animated: true) controller.weekdayHeaderEnabled = true controller.weekdayTextType = .short controller.edgesForExtendedLayout = [] controller.delegate = self.delegate cell.formViewController()?.navigationController?.pushViewController(controller, animated: true)
The text was updated successfully, but these errors were encountered:
I managed to get the header to show, but the appbar is still gray, by rearranging the weekdayHeaderEnabled setting to before the selectedDate setter.
controller.firstDate = Date().subtract(years: 1) controller.lastDate = Date().add(years: 3) controller.weekdayHeaderEnabled = true controller.weekdayTextType = .short controller.edgesForExtendedLayout = [] controller.selectedDate = self.value controller.scroll(to: self.value ?? Date(), animated: true) controller.delegate = self.delegate cell.formViewController()?.navigationController?.pushViewController(controller, animated: true)
Sorry, something went wrong.
Finally managed to solve the gray appbar issue with the following in the viewDidLoad
self.navigationController?.navigationBar.isTranslucent = false
No branches or pull requests
Saw #86 , but still doesn't work for me, adding the edgesForExtendedLayout = [] make the appbar gray, that's all.
The text was updated successfully, but these errors were encountered: