2022-12-21 16:17:53 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:lottie/lottie.dart';
|
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
2023-04-12 14:41:35 +00:00
|
|
|
import 'package:stackwallet/utilities/theme/color_theme.dart';
|
|
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
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) {
|
2023-04-12 14:41:35 +00:00
|
|
|
final isChan = Theme.of(context).extension<StackColors>()!.themeType ==
|
|
|
|
ThemeType.chan ||
|
|
|
|
Theme.of(context).extension<StackColors>()!.themeType ==
|
|
|
|
ThemeType.darkChans;
|
|
|
|
|
2022-12-21 16:17:53 +00:00
|
|
|
return Container(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: Center(
|
|
|
|
child: SizedBox(
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2023-04-12 14:41:35 +00:00
|
|
|
child: isChan
|
|
|
|
? Image(
|
|
|
|
image: AssetImage(
|
|
|
|
Assets.gif.stacyPlain,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Lottie.asset(
|
|
|
|
Assets.lottie.test2,
|
|
|
|
animate: true,
|
|
|
|
repeat: true,
|
|
|
|
),
|
2022-12-21 16:17:53 +00:00
|
|
|
),
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|