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(), child: WalletCard(),
), ),
SizedBox( SizedBox(
height: 18, height: 28,
), ),
Expanded(child: TradeHistoryPanel()) Expanded(child: TradeHistoryPanel())
], ],

View file

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

View file

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