stack_wallet/lib/widgets/loading_indicator.dart

29 lines
565 B
Dart
Raw Normal View History

2022-08-26 08:11:35 +00:00
import 'package:flutter/cupertino.dart';
import 'package:lottie/lottie.dart';
import 'package:stackwallet/utilities/assets.dart';
class LoadingIndicator extends StatelessWidget {
const LoadingIndicator({
Key? key,
this.width,
this.height,
}) : super(key: key);
final double? width;
final double? height;
@override
Widget build(BuildContext context) {
return SizedBox(
width: width,
height: height,
child: Lottie.asset(
Assets.lottie.test2,
animate: true,
repeat: true,
),
);
}
}