-
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
using alamofireimage for transitions when loading thumbnails and graphs #513
using alamofireimage for transitions when loading thumbnails and graphs #513
Conversation
self.clearGoalGraph() | ||
} | ||
}) | ||
beeLemniscateView.isHidden = !currentlyShowingGraph |
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.
It, this MR, does appear to have the consequence of the bee lemniscate not appearing very often.
}) | ||
beeLemniscateView.isHidden = !currentlyShowingGraph | ||
|
||
imageView.af.setImage(withURLRequest: request, |
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 here where it is being used in the Today View extension: https://github.com/krugerk/BeeSwift/blob/0456597a73674957ebd7734a7518cf6625f57d25/BeeSwiftToday/TodayTableViewCell.swift#L190
I think this changes some current behavior which was intentional. In particular, the intended behavior is:
|
It was already being used in the Today Extension view but not for the graphs and graph thumbnails elsewhere in the app. Using it simplifies the code and allows for easily adding transitions. When scrolling the gallery or loading a goal, the user experience is enhanced by using smooth rather than jarring animations and transitions.
da7d818
to
336f304
Compare
Going to close this out given the above, but comment here if you don't think that's the right action. |
It was already being used in the Today Extension view but not for the graphs and graph thumbnails elsewhere in the app. Using it simplifies the code and allows for easily adding transitions. When scrolling the gallery or loading a goal, the user experience is enhanced by using smooth rather than jarring animations and transitions.