CWA-222 | increased height of spaces between buttons, card and transactions panel in the dashboard page

Oleksandr Sobol committed Jun 11, 2020 at 18:35 UTC ea85d19cab3a9f84c87bf1d723979ff8adae89bc
3 files changed +3 -3
lib/src/screens/dashboard/dashboard_page.dart
+1 -1
@@ -68,7 +68,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
68 child: WalletCard(),
69 ),
70 SizedBox(
71 - height: 18,
71 + height: 28,
72 ),
73 Expanded(child: TradeHistoryPanel())
74 ],
lib/src/screens/dashboard/widgets/button_header.dart
+1 -1
@@ -244,7 +244,7 @@ class ButtonHeader extends SliverPersistentHeaderDelegate {
244 }
245
246 @override
247 - double get maxExtent => 154;
247 + double get maxExtent => 164;
248
249 @override
250 double get minExtent => 66;
lib/src/screens/dashboard/widgets/trade_history_panel.dart
+1 -1
@@ -75,7 +75,7 @@ class TradeHistoryPanelState extends State<TradeHistoryPanel> {
75 : actionListStore.items;
76 final itemsCount = items.length + 1;
77 final symbol = settingsStore.fiatCurrency.toString();
78 - double freeSpaceHeight = MediaQuery.of(context).size.height - 460;
78 + double freeSpaceHeight = MediaQuery.of(context).size.height - 480;
79
80 return SliverList(
81 key: _listKey,