Trusted by the world’s leading companies
Overview
The Xamarin Carousel control is an intuitive interface for navigating through a collection of views with and without scaling and rotation transformations.
Perspective view
The perspective or 3D view of Xamarin.Forms Carousel View is an intuitive interface to navigate through a collection of views with offset, scaling, and rotation.


Rotation
The rotate option helps users to set the rotation angle of the non-selected items.

Scaling
Scale option helps users to reduce the size of non-selected items to focus the selected item.
Linear view
The Xamarin.Forms Carousel View control allows users to populate the collection of views in a horizontal linear layout.


Custom template
The Xamarin.Forms Carousel View control accepts templates for the items to change the look of the items.
On-demand loading
On-demand loading enables users to load a subset of data in the Xamarin.Forms Carousel View control and to load more items when needed. It helps users to increase initial loading performance when populating huge items.


Virtualization
The Xamarin.Forms Carousel View control has been virtualized to improve loading performance and reduce app’s memory.
Data binding
Data binding works out of the box for all the popular data sources. Every aspect of the carousel control has been designed with MVVM pattern in mind .

Spacing between items
Spacing in perspective view
Customize the space between non-selected items and the selected item in perspective view.

Spacing in linear view
Customize the space between all the items in linear view.
Xamarin.Forms Carousel View Code Example
Easily get started with the Xamarin.Forms Carousel View using a few simple lines of XAML and C# code example as demonstrated below. Also explore our Xamarin.Forms Carousel View Example that shows you how to render and configure the Carousel View for Xamarin.Forms.
<ContentPage.BindingContext>
<local:CarouselViewModel/>
</ContentPage.BindingContext>
<ContentPage.Resources>
<ResourceDictionary>
<DataTemplate x:Key="itemTemplate">
<Image Source="{Binding Image}"
Aspect="AspectFit"/>
</DataTemplate>
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<carousel:SfCarousel x:Name="carousel"
ItemTemplate="{StaticResource itemTemplate}"
ItemsSource="{Binding ImageCollection}"
HeightRequest="400"
WidthRequest="800" />
</ContentPage.Content>public class CarouselModel
{
public CarouselModel(string imageString)
{
Image = imageString;
}
private string _image;
public string Image
{
get { return _image; }
set { _image = value; }
}
}
public class CarouselViewModel
{
public CarouselViewModel()
{
ImageCollection.Add(new CarouselModel("carousel_person1.png"));
ImageCollection.Add(new CarouselModel("carousel_person2.png"));
ImageCollection.Add(new CarouselModel("carousel_person3.png"));
ImageCollection.Add(new CarouselModel("carousel_person4.png"));
ImageCollection.Add(new CarouselModel("carousel_person5.png"));
}
private List<CarouselModel> imageCollection = new List<CarouselModel>();
public List<CarouselModel> ImageCollection
{
get { return imageCollection; }
set { imageCollection = value; }
}
}Not sure how to create your first Xamarin Carousel View? Our documentation can help.
I’d love to read it now150+ XAMARIN UI CONTROLS
-
Xamarin.Forms
-
Xamarin.Android
-
Xamarin.iOS
-
GRIDSDATA VISUALIZATIONNAVIGATIONEDITORSLAYOUTPROJECT MANAGEMENTNOTIFICATIONDOCUMENT PROCESSING LIBRARIESVIEWER/EDITORMISCELLANEOUSCHAT
-
GRIDSDATA VISUALIZATIONNAVIGATIONEDITORSLAYOUTPROJECT MANAGEMENTNOTIFICATIONVIEWER/EDITORDOCUMENT PROCESSING LIBRARIESMISCELLANEOUS
-
GRIDSDATA VISUALIZATIONNAVIGATIONEDITORSLAYOUTPROJECT MANAGEMENTNOTIFICATIONVIEWER/EDITORDOCUMENT PROCESSING LIBRARIESMISCELLANEOUS
Frequently Asked Questions
Why should you choose Syncfusion Xamarin Carousel View?
- The only control in the market to show items in 3D or linear arrangements.
- Rotation angle and spacing between the items can be customized
- Simple and straight forward API.
Touch friendly and highly responsive with a smooth animation.
- One of the best Xamarin Carousel View in the market that offers feature-rich UI to interact with the software.
Expansive learning resources such as demos, documentation to learn quickly and get started with Xamarin Carousel View.
Where can I find the Syncfusion Xamarin Carousel View demo?
You can find our Xamarin Carousel View demo here
Can I download and utilize the Syncfusion Xamarin Carousel View for free?
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.
How do I get started with Syncfusion Xamarin Carousel View?
A good place to start would be our comprehensive getting started documentation.
Our Customers Love Us
Awards
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.

