CWA-198 | fixed dashboard_page
Oleksandr Sobol committed
Apr 17, 2020 at 23:27 UTC
a260ed7cea4a8b58ae80e28021986ccef3015922
1 file changed
+4
-13
lib/src/screens/dashboard/dashboard_page.dart
+4
-13
@@ -62,19 +62,10 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
62
padding: EdgeInsets.only(left: 20, top: 23),
63
child: WalletCard(),
64
),
65
- Expanded(
66
- child: Stack(
67
- alignment: Alignment.topCenter,
68
- fit: StackFit.expand,
69
- children: <Widget>[
70
- Positioned(
71
- top: 28,
72
- left: 0,
73
- child: TradeHistoryPanel()
74
- ),
75
- ],
76
- )
77
- )
65
+ SizedBox(
66
+ height: 28,
67
+ ),
68
+ Expanded(child: TradeHistoryPanel())
69
],
70
),
71
),