Revert "feat: add custom los icon"

This reverts commit 0f2d18d6fa.
This commit is contained in:
just_stuff_tm
2026-02-22 23:47:49 -05:00
parent 0f2d18d6fa
commit 08edd2696e
5 changed files with 12 additions and 81 deletions
+1 -2
View File
@@ -16,7 +16,6 @@ import '../services/map_tile_cache_service.dart';
import '../utils/route_transitions.dart';
import '../widgets/app_bar.dart';
import '../widgets/quick_switch_bar.dart';
import '../icons/los_icon.dart';
class LineOfSightEndpoint {
final String label;
@@ -643,7 +642,7 @@ class _LineOfSightMapScreenState extends State<LineOfSightMapScreen> {
alignment: Alignment.centerRight,
child: ElevatedButton.icon(
onPressed: _loading ? null : _runLos,
icon: const LosIcon(),
icon: const Icon(Icons.visibility),
label: Text(context.l10n.losRun),
),
),
+1 -2
View File
@@ -20,7 +20,6 @@ import '../services/map_tile_cache_service.dart';
import '../utils/contact_search.dart';
import '../utils/route_transitions.dart';
import '../widgets/quick_switch_bar.dart';
import '../icons/los_icon.dart';
import 'channels_screen.dart';
import 'chat_screen.dart';
import 'contacts_screen.dart';
@@ -281,7 +280,7 @@ class _MapScreenState extends State<MapScreen> {
),
if (!_isBuildingPathTrace)
IconButton(
icon: const LosIcon(),
icon: const Icon(Icons.visibility),
onPressed: () {
final candidates = <LineOfSightEndpoint>[];
if (connector.selfLatitude != null &&