diff --git a/lib/components/dark_mode_map.dart b/lib/components/dark_mode_map.dart index b887f90..b2e7dcf 100644 --- a/lib/components/dark_mode_map.dart +++ b/lib/components/dark_mode_map.dart @@ -338,31 +338,6 @@ class _DarkModeMapComponentState extends State { ), ), ), - // Navigation and action buttons (positioned above bottom button bar) - Positioned( - bottom: 120, - right: 16, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - // Start navigation button - if (widget.selectedDelivery != null && !_isNavigating) - _buildActionButton( - label: _isStartingNavigation || _isInitializing ? 'Loading...' : 'Navigate', - icon: Icons.directions, - onPressed: _isStartingNavigation || _isInitializing ? null : _startNavigation, - color: SvrntyColors.crimsonRed, - ), - if (_isNavigating) - _buildActionButton( - label: 'Stop', - icon: Icons.stop, - onPressed: _stopNavigation, - color: Theme.of(context).colorScheme.onSurface, - ), - ], - ), - ), // Bottom action button bar if (widget.selectedDelivery != null) Positioned(