mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +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(),
|
||||
),
|
||||
SizedBox(
|
||||
height: 18,
|
||||
height: 28,
|
||||
),
|
||||
Expanded(child: TradeHistoryPanel())
|
||||
],
|
||||
|
|
|
@ -244,7 +244,7 @@ class ButtonHeader extends SliverPersistentHeaderDelegate {
|
|||
}
|
||||
|
||||
@override
|
||||
double get maxExtent => 154;
|
||||
double get maxExtent => 164;
|
||||
|
||||
@override
|
||||
double get minExtent => 66;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue