- December 30, 2024
- Mins Read
We designed a UI that allows users to switch between list and grid views on the fly and choose the most convenient display type. List view usually provides more details about each user or contact. Grid view allows more users or contacts to appear on the screen at the same time.
We created design mockups for both list and grid views using Sketch. As soon as the mockups were ready, we used Principle to create a smooth transition between the two display types. Note that the hamburger menu changes its appearance depending on which view is activated:
You can use our Contact Display Switch for:
Our DisplaySwitcher component isn’t limited to friends and contacts lists. It can work with any other content too.
At first, import DisplaySwitcher:
Then create two layouts (list mode and grid mode):
Set current layout:
Then override two UICollectionViewDataSource methods:
Also override one UICollectionViewDelegate method (for custom layout transition):
And in the end necessary create transition and start it (you can simply change animation duration for transition layout and for rotation button):
We use five classes to implement our DisplaySwitcher:
In the BaseLayout class, we use methods for building list and grid layouts. But what’s most interesting here is the сontentOffset calculation that should be defined after the transition to a new layout.
First, save the сontentOffset of the layout you are switching from:
Then, calculate the сontentOffset for the new layout in the targetContentOffsetForProposedContentOffset method:
And then clear value of variable in method finalizeLayoutTransition:
In the BaseLayoutAttributes class, a few custom attributes are added:
transitionProgress is the current value of the animation transition that varies between 0 and 1. It’s needed for calculating constraints in the cell.
nextLayoutCellFrame is a property that returns the frame of the layout you switch to. It’s also used for the cell layout configuration during the process of transition.
layoutState is the current state of the layout.
The TransitionLayout class overrides two UICollectionViewLayout methods:
layoutAttributesForElementsInRect and
layoutAttributesForItemAtIndexPath, where we set properties values for the class BaseLayoutAttributes.
The TransitionManager class uses the UICollectionView’sstartInteractiveTransitionToCollectionViewLayout method, where you point the layout it must switch to:
This class is used to control animation duration. This class helps calculate the animation progress depending on the animation duration preset:
That’s it! Use our DisplaySwitcher in any way you like! Check it out on Dribbble.
We’d be really happy if you sent us links to your projects where you use our component. Just send an email to github@yalantis.com And do let us know if you have any questions or suggestion regarding the animation.
P.S. We’re going to publish more awesomeness wrapped in code and a tutorial on how to make UI for iOS (Android) better than better. Stay tuned!