mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
CWA-222 | increased height of spaces between buttons, card and transactions panel in the dashboard page
This commit is contained in:
parent
4dfed515c7
commit
ea85d19cab
3 changed files with 3 additions and 3 deletions
|
@ -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())
|
||||||
],
|
],
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue