lottie_fixup 0.3.0 copy "lottie_fixup: ^0.3.0" to clipboard
lottie_fixup: ^0.3.0 copied to clipboard

Fixes Lottie/Bodymovin exports that crash or freeze the lottie Flutter package: audio layers, empty precomps, and unexecuted expressions (loops, wiggle, random, cross-layer links).

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:lottie/lottie.dart';
import 'package:lottie_fixup/lottie_fixup.dart';

void main() => runApp(const ExampleApp());

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Lottie.asset(
            'assets/raw_export.json',
            decoder: fixupLottieDecoder,
          ),
        ),
      ),
    );
  }
}
0
likes
160
points
309
downloads

Documentation

API reference

Publisher

verified publishermonlycute.id.vn

Weekly Downloads

Fixes Lottie/Bodymovin exports that crash or freeze the lottie Flutter package: audio layers, empty precomps, and unexecuted expressions (loops, wiggle, random, cross-layer links).

Repository (GitHub)
View/report issues

Topics

#lottie #animation #after-effects #cli

Funding

Consider supporting this project:

ko-fi.com

License

MIT (license)

Dependencies

flutter, lottie

More

Packages that depend on lottie_fixup