-
Notifications
You must be signed in to change notification settings - Fork 7
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
cleaning up galleryvc #615
Conversation
#607 (comment) cleanups landed in this Merge Request. |
UIBarButtonItem(barButtonSystemItem: .search, target: self, action: #selector(self.searchButtonPressed)) | ||
] | ||
self.navigationItem.rightBarButtonItems = [ | ||
UIBarButtonItem(image: UIImage(systemName: "gearshape.fill"), style: UIBarButtonItem.Style.plain, target: self, action: #selector(self.settingsButtonPressed)) |
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.
UIBarButtonItem(barButtonSystemItem: .search, target: self, action: #selector(self.searchButtonPressed)) | |
] | |
self.navigationItem.rightBarButtonItems = [ | |
UIBarButtonItem(image: UIImage(systemName: "gearshape.fill"), style: UIBarButtonItem.Style.plain, target: self, action: #selector(self.settingsButtonPressed)) | |
.init(barButtonSystemItem: .search, target: self, action: #selector(self.searchButtonPressed)) | |
] | |
self.navigationItem.rightBarButtonItems = [ | |
.init(image: UIImage(systemName: "gearshape.fill"), style: UIBarButtonItem.Style.plain, target: self, action: #selector(self.settingsButtonPressed)) |
} else { | ||
self.updateGoals() | ||
self.fetchGoals() |
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.
And this functional change
Best way I've found to review diffs like this one
|
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.
LGTM!
Let's aim for more specificity than this in general. e.g. from this I don't know which cases you tested from having goals / no goals / deadbeat / etc. |
Summary
A merge request for various cleanups that were kept out of #607 so as to make for a clean diff.
For UI changes including screenshots of before and after is great.
n/a
Validation
Built app
Ran it in simulator