Skip to content
This repository was archived by the owner on Jan 18, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Lottie is a mobile library that parses [Adobe After Effects](http://www.adobe.co

## Current status

Achived rednering parity with lottie-android except for dash paths.
Achived rendering parity with lottie-android except for dash paths.

All samples included render. Motorcycle has some issues still, but also has issues on lottie-android (due to using effects that aren't supported).

Expand Down
3 changes: 1 addition & 2 deletions example/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const List<String> assetNames = const <String>[
'assets/favourite_app_icon.json',
'assets/preloader.json',
'assets/walkthrough.json',
'assets/rrect.json',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you elaborate why rrect.json is not required anymore?

];

void main() {
Expand Down Expand Up @@ -120,7 +119,7 @@ class _LottieDemoState extends State<LottieDemo>
if (_controller.isAnimating) {
if (_repeat) {
_controller.forward().then<Null>(
(Null nul) => _controller.repeat());
(nul) => _controller.repeat());
} else {
_controller.forward();
}
Expand Down