Change background colour
ykworld opened this issue · 4 comments
ykworld commented
Hello,
I would like to change the background colour from grey to white. How can I change it?
Thanks!
gavirawson-apple commented
Hi! Which View Controller are you using in CareKit?
ykworld commented
Hi! Which View Controller are you using in CareKit?
I am using OCKListViewController and OCKDailyPageViewController. Can I change the background color?
ykworld commented
gavirawson-apple commented
The underlying view used in the OCKDailyPageViewController
is private to the framework. If you'd like to change the background color, you can modify the view in the framework directly.
On the other hand, the OCKListViewController
does support modifying the background color outside of the framework -
listViewController.view.backgroundColor = ...
Let me know if that works for you.