/* * This file is part of Stack Wallet. * * Copyright (c) 2023 Cypher Stack * All Rights Reserved. * The code is distributed under GPLv3 license, see LICENSE file for details. * Generated by Cypher Stack on 2023-05-26 * */ import 'dart:io'; import 'dart:math'; import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:lottie/lottie.dart'; import 'package:stackwallet/themes/stack_colors.dart'; import 'package:stackwallet/themes/theme_providers.dart'; import 'package:stackwallet/utilities/assets.dart'; import 'package:stackwallet/widgets/background.dart'; import 'package:stackwallet/widgets/conditional_parent.dart'; import 'package:stackwallet/widgets/rounded_container.dart'; class LoadingView extends ConsumerWidget { const LoadingView({Key? key}) : super(key: key); @override Widget build(BuildContext context, WidgetRef ref) { final size = MediaQuery.of(context).size; final width = min(size.width, size.height) * 0.5; final assetPath = ref.watch( themeProvider.select((value) => value.assets.loadingGif), ); return Background( child: Scaffold( backgroundColor: Theme.of(context).extension()!.background, body: Container( color: Theme.of(context).extension()!.background, child: Center( child: ConditionalParent( condition: Theme.of(context).extension()!.themeId == "oled_black", builder: (child) => RoundedContainer( color: const Color(0xFFDEDEDE), radiusMultiplier: 100, width: width * 1.35, height: width * 1.35, child: child, ), child: SizedBox( width: width, child: assetPath != null ? Image.file( File( assetPath, ), ) : Lottie.asset( Assets.lottie.test2, animate: true, repeat: true, ), ), ), // child: Image( // image: AssetImage( // Assets.png.splash, // ), // width: MediaQuery.of(context).size.width * 0.5, // ), ), ), ), ); } }