-
Notifications
You must be signed in to change notification settings - Fork 29
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
Minor tweaks of button alignment and queue spacing #233
Minor tweaks of button alignment and queue spacing #233
Conversation
When the repeat mode is activated in the queue, it doesn't show that it is activated. |
@mostafaalagamy Thank you for testing! This should be resolved now. I hope ... |
It's resolved, but I think there's a conflict with the PR (unify multiselect look with playlist screen). Please review it. |
That's possible. When I cherry picked the other commit to this branch there were no problems but I don't know what it'll look like when merging. But is there a way to resolve conflicts right now anyway? I think I have to wait until one of the PRs is (potentionally) merged and then I can fix the other one. But frankly, I don't know much about git ... |
I think after the merger it will be fix , thanks. |
top = ListItemHeight, | ||
bottom = ListItemHeight, | ||
top = ListItemHeight + 12.dp + 8.dp, | ||
bottom = ListItemHeight + 8.dp, |
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 rather bad practice to "hardcode" values like this
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.
Yes, you're completely right, but I wasn't sure how it was handled in this app. In my own I always use dimension resources. But regarding the Queue maybe we could use Scaffold and put the upper and lower bars into the corresponding "topBar" and "bottomBar" letting the Scaffold measure their heights, so theres no need for a custom layout?
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.
Thanks a lot for this PR, sorry for the time it took for me to accept it, I had a lot of things going on!
I agree with you, it's how it should be handled, but right now I would gladly focus on fixing bugs/new features, but one day, that will be done ! |
To be honest, those things really bugged me, maybe I'm just weird D:
I'd appreciate some feedback, especially if I broke some conventions. Both the
IconButton
inPlayer
and theResizableIconButton
inQueue
were the only ones of their kind in their file, so I figured it would be more consistent to replace them with their counterpart.