-
Notifications
You must be signed in to change notification settings - Fork 552
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
Show divider after last item #456
Comments
Hello @de-Stan, the last line is removed on purpose: for (int i = 0; i < itemCount - 1; i++) {
...
} |
I see got it. |
@de-Stan, last item is always at the bottom/right edge of the screen, that line shouldn't be visible, normally, as it isn't visible on the first item. Do you want it visible? |
In our current project the client asked for it. There is a recyclerview that might contain just a couple of items so it would be better (visual only) if the divider was there. |
Well, in that case, we can always add it as feature. |
Thought I could work on it after heading back from work and sending a PR.
Thanks for implementing it.
|
@de-Stan, sorry I was already there to fix a small bug in another class. |
Hello,
Is there a way to show a divider after the last item?
I'm using the default divider with
withDefaultDivider()
but it's not displayed beneath the last item.Thank you.
The text was updated successfully, but these errors were encountered: