2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import 'package:stackwallet/pages/wallets_view/sub_widgets/all_wallets.dart';
|
|
|
|
import 'package:stackwallet/pages/wallets_view/sub_widgets/empty_wallets.dart';
|
|
|
|
import 'package:stackwallet/pages/wallets_view/sub_widgets/favorite_wallets.dart';
|
|
|
|
import 'package:stackwallet/providers/providers.dart';
|
2023-02-10 20:06:44 +00:00
|
|
|
import 'package:stackwallet/providers/ui/color_theme_provider.dart';
|
|
|
|
import 'package:stackwallet/utilities/theme/color_theme.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
class WalletsView extends ConsumerWidget {
|
|
|
|
const WalletsView({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
static const routeName = "/wallets";
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
debugPrint("BUILD: $runtimeType");
|
|
|
|
final hasWallets = ref.watch(walletsChangeNotifierProvider).hasWallets;
|
|
|
|
|
|
|
|
final showFavorites = ref.watch(prefsChangeNotifierProvider
|
|
|
|
.select((value) => value.showFavoriteWallets));
|
|
|
|
|
|
|
|
return SafeArea(
|
|
|
|
child: hasWallets
|
|
|
|
? Padding(
|
2023-02-10 20:06:44 +00:00
|
|
|
padding: EdgeInsets.only(
|
|
|
|
top: ref.watch(colorThemeProvider).themeType ==
|
|
|
|
ThemeType.fruitSorbet
|
|
|
|
? 6
|
|
|
|
: 20,
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
children: [
|
|
|
|
if (showFavorites) const FavoriteWallets(),
|
|
|
|
if (showFavorites)
|
|
|
|
const SizedBox(
|
|
|
|
height: 20,
|
|
|
|
),
|
|
|
|
const Expanded(
|
|
|
|
child: Padding(
|
|
|
|
padding: EdgeInsets.symmetric(
|
|
|
|
horizontal: 16,
|
|
|
|
),
|
|
|
|
child: AllWallets(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: const Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
top: 20,
|
|
|
|
left: 16,
|
|
|
|
right: 16,
|
|
|
|
),
|
|
|
|
child: EmptyWallets(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|