DEV Community

Cover image for Easily Animate your Xamarin Applications with Lottie Animation
Suresh Mohan for Syncfusion, Inc.

Posted on • Originally published at syncfusion.com on

Easily Animate your Xamarin Applications with Lottie Animation

Adding simple animations to any application will make it look better. Xamarin.Forms provides native options to work with animations. But using Lottie animations makes it easier to add animation to your application. Lottie animations are open-source packages that cost nothing to access and use in the Xamarin applications. Please refer to this GitHub repository for the ReadMe and License files of Lottie animation projects.

Lottie animations animate elements using a JSON file, which provides the content to render the animation. There are a lot of things we can do with Lottie animations. In the following image, I have used Lottie animations to display an animated tooltip in a world map. It pops up with the name of the geolocation tapped. Lottie animations in Xamarin

The following are the resources needed to create this Xamarin.Forms application:

Steps to add a Lottie animation in the Syncfusion Maps control

  1. Create a Xamarin.Forms blank application.
  2. Add the following NuGet packages to the application:
    1. Xamarin.SfMaps
    2. Lottie NuGet packages
  3. To create a map, add the ‘world-map.shp’ and ‘world-map.dbf’ files as resources to the project. To learn more about these resources, please refer to this documentation.
  4. Now add a SfMaps control to display the map in your view.
<maps:SfMaps BackgroundColor="White" VerticalOptions="FillAndExpand">
            <maps:SfMaps.Layers >
                <maps:ShapeFileLayer Uri="world-map.shp" ItemsSource="{Binding DataSource}" ShapeIDPath="Country" ShapeIDTableField="admin"/>
            </maps:SfMaps.Layers>
</maps:SfMaps>
  1. Copy this Lottie animation JSON file to your Android, iOS, and UWP projects.
  2. Add a Lottie animation view as a TooltipTemplate of SfMap control.
<!--Add a map with tooltip to your application -->
<maps:SfMaps BackgroundColor="White" VerticalOptions="FillAndExpand">
            <maps:SfMaps.Layers >
                <maps:ShapeFileLayer Uri="world-map.shp" ItemsSource="{Binding DataSource}" ShapeIDPath="Country"
                                     ShapeIDTableField="admin">
                    <maps:ShapeFileLayer.TooltipSettings>
                        <maps:TooltipSetting
                            ShowTooltip="True"
                            StrokeColor="Transparent"
                            BackgroundColor="Transparent"
                            ValuePath="Country"
                            Duration="1000">
                            <maps:TooltipSetting.TooltipTemplate>
                                <DataTemplate>

                                    <!--JSON file for animation -->
                                    <forms:AnimationView
                                            Animation="mapmaker.json"
                                            Loop="True" IsPlaying="True"
                                            VerticalOptions="FillAndExpand"
                                            HorizontalOptions="FillAndExpand" HeightRequest="70" WidthRequest="70"/>
                                </DataTemplate>
                            </maps:TooltipSetting.TooltipTemplate>
                        </maps:TooltipSetting>
                    </maps:ShapeFileLayer.TooltipSettings>
                </maps:ShapeFileLayer>
            </maps:SfMaps.Layers>
</maps:SfMaps>

Now the Lottie animation will be displayed as a pop-up for every tap within the map.

You can download the complete sample from this GitHub location.

Conclusion

I hope you now have a clear idea of how to use Lottie animation in Xamarin.Forms applications. The same procedure can be followed to add Lottie animations to any template of the Syncfusion Xamarin UI controls.

Please refer to this link to check the available JSON files to add animation to your Xamarin.Forms application.

If you like this article, we think you might also like the following eBooks and other articles.

[ebook] Xamarin.Forms Succinctly

[ebook] Xamarin.Forms for macOS Succinctly

[blog] 7 Ways to Boost Your Xamarin Development Productivity

[blog] Designing an Airfare Calendar in Xamarin.Forms

The post Easily Animate your Xamarin Applications with Lottie Animation appeared first on Syncfusion Blogs.

Top comments (0)