arrow left
Back to Developer Education

Lottie Animations in Flutter

Lottie Animations in Flutter

Animations are fundamental in every mobile application. They make the user interface of an application appealing and fun to use. However, animations may be challenging to implement. Lottie animations come in handy to make the implementation easier. <!--more--> A Lottie is a JSON-based animation file. They can be used both as static and network assets. In addition, they polish your app's user interface and make it intuitive to users.

In this article, we will implement Lottie animation in a Flutter application. Animation controllers in Flutter give us high-level control over our animations. Therefore, we will be using an animation controller to control the state of our Lottie animations in our Flutter app.

Prerequisites

  1. A solid understanding of the Dart programing language.
  2. A solid understanding of Flutter widgets.
  3. Basic knowledge of using animation controllers in Flutter.

This tutorial assumes that you have Flutter installed on your computer. If you have not installed Flutter, visit Flutter Docs for full Flutter installation instructions before continuing.

We will be using Flutter version 2.5.3 to build our project.

We will use Android Studio with the Flutter plugin installed as our IDE. Visual Studio Code can also be used.

Let us jump right into it!

Step one: Adding Lottie dependency to the project

Go to the integrated terminal in the IDE and execute this command:

flutter pub add Lottie

You will see a line like below added to the to the pubspec.yaml file of the project:

dependencies:
  Lottie: ^1.2.1 //Lottie Animation Library

Once the Lottie dependency has been added to the project, you can import it to the dart code by adding this line to the main.dart file:

import 'package:lottie/lottie.dart';

Step Two: Adding assets to the project

First, visit Lottie animation to get a Lottie animation JSON file, then select and download the animation of your choice.

Next, create an assets folder in your project directory and add the Lottie file there.

Lastly, add your assets folder in the pubspec.yaml file in your project as shown below and run flutter pub get:

assets:
 - assets/

Step three: Creating the LottieScreen page

In main.dart, create a new stateful widget class named LottieScreen which will return a Scaffold containing an app bar with a title; Lottie implementation. As shown below:

class LottieScreen extends StatefulWidget {
  const LottieScreen({Key? key}) : super(key: key);

  @override
  _LottieScreenState createState() => _LottieScreenState();
}

class _LottieScreenState extends State<LottieScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Lottie Implementation"),
        centerTitle: true,
      ),
    );
  }
}

Next, add a body to the Scaffold. The body will contain the following widgets:

  • Center widget - to center the child widgets on the screen.
  • Column widget, which will include a child of the Center widget, lays the children vertically.

Step four: Using Lottie animations

1. Network Lottie

To add a network Lottie animation, go to the Lottie files website and copy the URL of the Lottie of your choice.

Add a Lottie.network('') widget as one of the children in the Column widget. Paste the Lottie URL as shown below:

body: Center(
    child: Lottie.network("https://assets8.lottiefiles.com/packages/lf20_xxjvkrex.json",
    animate: true
    ),
),

When the application is run, the animation plays automatically. This automatic play can be changed by adding the animate: false property inside the Lottie widget. After that, the Lottie animation becomes a static image.

2. Asset Lottie

The Lottie.asset('') method displays Lottie JSON files which are stored locally in the assets folder as shown below:

body: Center(
  child: Lottie.asset("assets/transaction-completed.json"),
),

Step five: Animation Controllers

To comprehensively explain the use of animation controllers in Flutter, we will implement an animation controller using the Lottie asset animation that we added to our project above.

We will create a button that when pressed, a dialog box appears containing a Lottie asset which notifies a user that the command has been executed successfully.

This is the code for the button:

body: Center(
    child: Column(
      mainAxisSize: MainAxisSize.min,
      children: [
        Lottie.network("https://assets8.lottiefiles.com/packages/lf20_xxjvkrex.json", animate: true),
        const SizedBox(height: 24,),
        ElevatedButton(
            onPressed: () => showSuccessfulDialog(),
            child: const Text("Update Transactions"),
            )
    ],),
),

The showSuccessfulDialog() method is executed when the button is pressed. This method is the one that shows the dialog box. This is the showSuccessfulDialog() method code:

void showSuccessfulDialog() => showDialog(
      context: context,
      builder: (context) => Dialog(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: [
            Lottie.asset("assets/transaction-complete.json",
                repeat: false,
              controller: lottieController,
              onLoaded: (composition) {
              controller.duration = composition.duration;
              controller.forward();
              }
            ),
            const SizedBox(height: 8),
            const Center(
              child: Text("Done!", style: TextStyle(
                  color: Colors.green,
                  fontSize: 21),),
            ),
            const SizedBox(height: 14),
          ]
        ),
      )
  );

From the code above, we have created a dialog box that will appear when the button is clicked and disappears after the Lottie animation is complete.

We set the repeat: false property on the Lottie to make the animation only play once and not on a loop. We will create a new animation controller inside our state called lottieController, as shown below:

late AnimationController lottieController;

In the controller property, we will add the animation controller that we have created to the showSuccessfulDialog() method. Then, to start the Lottie animation, we add the onLoaded property, where we will call the animation controller with a forward method.

Finally, we will set the duration of the animation to the one preset for the Lottie file using composition.duration as shown below:

onLoaded: (composition) {
  lottieController.forward();
  lottieController.duration = composition.duration;
}

We then need to create an initState() method and dispose() method to initialize the animation and dispose it on completion.

1. initState() method

We will add SingleTickerProviderStateMixin to our state as shown:

class _LottieScreenState extends State<LottieScreen> with SingleTickerProviderStateMixin{
  late AnimationController lottieController;

  @override
  void initState() {
    super.initState();

    lottieController = AnimationController(
      vsync: this,
    );

    lottieController.addStatusListener((status) async {
      if (status == AnimationStatus.completed) {
        Navigator.pop(context);
        lottieController.reset();
      }
    });
  }

We are using SingleTickerProviderStateMixin because we only use one animation controller for our project. Therefore, we call our controller inside the initState, which allows us to use the vsync: this parameter used to synchronize our animation frame rate through our animation controller.

To automatically close the dialog once the animation has completed, we added a status listener that listens to the animation controller, as shown in the code above.

If the animation is complete, then the dialog closes. This is because of the Navigator.pop(context); code. After the dialog is closed, the animation controller is reset using the lottieController.reset(); function to replay the next time we click the button.

Next, create the dispose() method as shown in the code below. Finally, add lottieController.dispose(); code which will destroy the animation controller and remove it from the widget tree:

  @override
  void dispose() {
    lottieController.dispose();
    super.dispose();
  }

When our application is run, We will get a result like this:

Flutter Lottie Implementation

This is the full code of the Flutter application that we have created:

class LottieScreen extends StatefulWidget {
  const LottieScreen({Key? key}) : super(key: key);

  @override
  _LottieScreenState createState() => _LottieScreenState();
}

class _LottieScreenState extends State<LottieScreen> with SingleTickerProviderStateMixin{
  late AnimationController lottieController;

  @override
  void initState() {
    super.initState();

    lottieController = AnimationController(
      vsync: this,
    );

    lottieController.addStatusListener((status) async {
      if (status == AnimationStatus.completed) {
        Navigator.pop(context);
        lottieController.reset();
      }
    });
  }

  @override
  void dispose() {
    lottieController.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Lottie Implementation"),
        centerTitle: true,
      ),
      body: Center(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: [
            Lottie.asset("assets/cards.json",
            height: 300,
            width: 300,
              animate: true
            ),
            const SizedBox(height: 24,),
            ElevatedButton(
                onPressed: () => showSuccessfulDialog(),
                child: const Text("Update Transactions"),
            )
          ],
        ),

      ),
    );
  }
  void showSuccessfulDialog() => showDialog(
      context: context,
      builder: (context) => Dialog(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: [
            Lottie.asset("assets/transaction-completed.json",
                repeat: false,
                height: 200,
                width: 200,
              controller: lottieController,
              onLoaded: (composition) {
                lottieController.duration = composition.duration;
                lottieController.forward();
              }
            ),
            const Center(
              child: Text("Done!", style: TextStyle(
                  color: Colors.green,
                  fontSize: 24,
                  fontWeight: FontWeight.bold
                  ),),
            ),
            const SizedBox(height: 21),
          ]
        ),
      )
  );
}

Conclusion

Lottie animations are simple and easy to implement in a Flutter application. We have gone through implementing these Lottie animations in our app. In addition, we have utilized an animation controller to control the state of our animation.

The knowledge from this article can be used in other projects to create interactive UIs for your projects.

I hope you find tutorial helpful.

Happy Coding!


Peer Review Contributions by: Mercy Meave

Published on: Jan 11, 2022
Updated on: Jul 12, 2024
CTA

Start your journey with Cloudzilla

With Cloudzilla, apps freely roam across a global cloud with unbeatable simplicity and cost efficiency