stack_wallet/lib/widgets/loading_indicator.dart
2022-08-26 16:11:35 +08:00

28 lines
565 B
Dart

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,
),
);
}
}