Files
lottie-flutter/example/test/widget_test.dart
Xavier H 548c77dc45 Add FrameRate and improve performance (#93)
- Run the animation at the exported frame rate
- Wrap the animation in a RepaintBoundary
- Don't paint during "static" periods
2020-08-04 22:02:02 +02:00

10 lines
226 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:lottie_example/main_app.dart';
void main() {
testWidgets('Main sample', (tester) async {
await tester.pumpWidget(App());
await tester.pump();
});
}