Xamarin

Make your life simpler with the CollectionView’s Layouts 😎

CollectionView allows us display a list of data. It’s very similar to the ListView but this control enhances the performance and memory management of the list and covers different layout presentations such as: Vertical, horizontal and grid, making it a lot better and saving us our precious development time. This control is available from the version of Xamarin Forms 4.0.

In this post, we will learn the following topics:

âž– What do I need to do to start

âž– Layout types

   ➖ Vertical and Horizontal lists

   ➖ Vertical and Horizontal Grids

âž– Handling an empty CollectionView


Having it clear… What do I need to start? ?

First of all, let me tell you that CollectionView in an Experimental view, that’s why we need to put it available both Android and IOS. Just adding the following code just before calling Forms.Init() in your MainActivity.cs and in your AppDelegate.cs.

A quick reminder of what is an Experimental preview!

A experimental preview, as their name suggests, are functions or libraries from preview versions of Xamarin.Forms available for experimental purposes and you need to indicate that you want to enable it. If you want to know more information about it, you can enter here.


Let’s start!!!

Layout Types

CollectionView provide to us different layout that allows us to display the data in a funnier way! Let’s know one by one!

Vertical and Horizontal lists

âž–Knowing the structure

This image has an empty alt attribute; its file name is HVCollectionView-2-1024x623.png

As we showed above, both horizontal and vertical list, used the same structure, you just must to specify in the ItemLayout property which one do you want to implement.

⚠ It’s very important to always add the HeightRequest property because if we do not, the CollectionView will not be visible on the screen.

âž–Let’s create an example

To create it and every example in this post, I used the MVVM pattern to fill the control with data. You can see more information about this topics here.

This image has an empty alt attribute; its file name is HCollectionView.gif

This image has an empty alt attribute; its file name is VList.gif


Vertical and Horizontal Grids

âž–Know the structure

This image has an empty alt attribute; its file name is HVGridCollectionView-1024x652.png

âž–Let’s create an example

This image has an empty alt attribute; its file name is HVGrid.gif


Handling an empty CollectionView

We can encounter the event that our CollectionView does not have any data available, so it’s good to handle this so that our users are always kept visually informed of what’s happening in our application. We can two way to do it! Let’s learn!

1⃣ We get it just adding the EmptyView property in our Collection View declaration. It receives a String value.

2⃣. To your CollectionView normal structure add <CollectionView.EmptyView> tags and inside it add you UI design code, just as in the following image:

This image has an empty alt attribute; its file name is EmptyCollectionView-1-1024x452.png

And voila!!! ? Our CollectionView is implemented!

Thanks for reading ?!!!


Spanish post: https://medium.com/@reyes.leomaris/conociendo-los-layout-del-collectionview-7e7a74483dcd

References: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/layout?WT.mc_id=DT-MVP-5003353

Tagged , ,

7 thoughts on “Make your life simpler with the CollectionView’s Layouts 😎

Leave a Reply

Your email address will not be published. Required fields are marked *