From 2a3f26139946016e075b7637fdb4d43b8b92b4d3 Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Sat, 24 Feb 2024 21:17:41 +0100 Subject: [PATCH] fix: reduce buy/sell button size to avoid overlapping of the position Signed-off-by: Philipp Hoenisch --- mobile/lib/features/trade/trade_screen.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mobile/lib/features/trade/trade_screen.dart b/mobile/lib/features/trade/trade_screen.dart index 4193f2065..7bd5b00e0 100644 --- a/mobile/lib/features/trade/trade_screen.dart +++ b/mobile/lib/features/trade/trade_screen.dart @@ -216,6 +216,7 @@ class TradeScreen extends StatelessWidget { children: [ SizedBox( width: tradeButtonWidth, + height: 50, child: FloatingActionButton.extended( key: tradeScreenButtonBuy, heroTag: "btnBuy", @@ -234,6 +235,7 @@ class TradeScreen extends StatelessWidget { const SizedBox(width: 20), SizedBox( width: tradeButtonWidth, + height: 50, child: FloatingActionButton.extended( key: tradeScreenButtonSell, heroTag: "btnSell",