lottie 0.1.0 lottie: ^0.1.0 copied to clipboard
Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json and renders them natively on mobile!. This package is a pure Dart implementation of a Lottie player.
import 'package:flutter/widgets.dart';
import 'package:lottie/lottie.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Lottie.asset('assets/LottieLogo1.json');
}
}