-
Notifications
You must be signed in to change notification settings - Fork 39
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
Changing background color #22
Comments
The default cell has a UIView as background which is not connected as an outlet. You could possibly access it as subclass of the contentView of the cell but this is not a very nice solution. Otherwise you should create a nib file for your cell |
There needs to be a better solution for that, as this component does not support dark mode as is. It should either not hardcode the background to white or make it easier to change that background color at the very least |
@sarbogast is this fixed by #30 ? |
The original request was to make it easy to set the background color to any color. My pull request merely makes it so that the default background color works in both light and dark mode |
Hey, the standard way of changing the background color of the content cell does not work on PasswordRow.
.cellSetup { cell, row in cell.backgroundColor = .blue }
The text was updated successfully, but these errors were encountered: