-
Notifications
You must be signed in to change notification settings - Fork 787
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
feat(members): add gradient to members list #529
feat(members): add gradient to members list #529
Conversation
Add react-native-linear-gradient package
Adds a gradient to the right and left side in the members scroll list. Also removes the `marginRight` from the last avatar in the list.
Adds me as contributor.
src/components/members.component.js
Outdated
marginLeft: 15, | ||
marginRight: 15, | ||
paddingLeft: 15, | ||
paddingRight: 15, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be simplified: instead of paddingLeft
and paddingRight
, use paddingHorizontal
.
Add missed updated files running `react-native link`.
Change `paddingRight/Left` to `paddingHorizontal`.
This looks outstanding! Thanks so much @ocarreterom!! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great stuff @ocarreterom Thank you!!!
}, | ||
{ | ||
"login": "ocarreterom", | ||
"name": "Óscar Carretero", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
Adds a gradient to the right and left side in the members scroll list.
Also removes the
marginRight
from the last avatar in the list.