mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
gap fix
This commit is contained in:
parent
d5f401132b
commit
d8c833548d
2 changed files with 9 additions and 4 deletions
|
@ -106,12 +106,12 @@ class _FavoriteWalletsState extends ConsumerState<FavoriteWallets> {
|
|||
ManageFavoritesView.routeName,
|
||||
);
|
||||
},
|
||||
)
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
const SizedBox(
|
||||
height: 12,
|
||||
height: 20,
|
||||
),
|
||||
!hasFavorites
|
||||
? Padding(
|
||||
|
|
|
@ -5,6 +5,8 @@ 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';
|
||||
import 'package:stackwallet/providers/ui/color_theme_provider.dart';
|
||||
import 'package:stackwallet/utilities/theme/color_theme.dart';
|
||||
|
||||
class WalletsView extends ConsumerWidget {
|
||||
const WalletsView({Key? key}) : super(key: key);
|
||||
|
@ -22,8 +24,11 @@ class WalletsView extends ConsumerWidget {
|
|||
return SafeArea(
|
||||
child: hasWallets
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(
|
||||
top: 20,
|
||||
padding: EdgeInsets.only(
|
||||
top: ref.watch(colorThemeProvider).themeType ==
|
||||
ThemeType.fruitSorbet
|
||||
? 6
|
||||
: 20,
|
||||
),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
|
|
Loading…
Reference in a new issue