CWA-198 | fixed dashboard_page

This commit is contained in:
Oleksandr Sobol 2020-04-17 23:27:23 +03:00
parent 2a18f4a1e4
commit a260ed7cea

View file

@ -62,19 +62,10 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
padding: EdgeInsets.only(left: 20, top: 23), padding: EdgeInsets.only(left: 20, top: 23),
child: WalletCard(), child: WalletCard(),
), ),
Expanded( SizedBox(
child: Stack( height: 28,
alignment: Alignment.topCenter, ),
fit: StackFit.expand, Expanded(child: TradeHistoryPanel())
children: <Widget>[
Positioned(
top: 28,
left: 0,
child: TradeHistoryPanel()
),
],
)
)
], ],
), ),
), ),