lottie 0.1.1 lottie: ^0.1.1 copied to clipboard
Use lottie in flutter to render animations for iOS and Android. 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');
}
}