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

This commit is contained in:
Oleksandr Sobol 2020-06-11 18:35:22 +03:00
parent 4dfed515c7
commit ea85d19cab
3 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
child: WalletCard(),
),
SizedBox(
height: 18,
height: 28,
),
Expanded(child: TradeHistoryPanel())
],

View file

@ -244,7 +244,7 @@ class ButtonHeader extends SliverPersistentHeaderDelegate {
}
@override
double get maxExtent => 154;
double get maxExtent => 164;
@override
double get minExtent => 66;

View file

@ -75,7 +75,7 @@ class TradeHistoryPanelState extends State<TradeHistoryPanel> {
: actionListStore.items;
final itemsCount = items.length + 1;
final symbol = settingsStore.fiatCurrency.toString();
double freeSpaceHeight = MediaQuery.of(context).size.height - 460;
double freeSpaceHeight = MediaQuery.of(context).size.height - 480;
return SliverList(
key: _listKey,