mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-02-12 16:52:51 +00:00
26 lines
563 B
Dart
26 lines
563 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SuspectedLocationIcon extends StatelessWidget {
|
|
const SuspectedLocationIcon({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: 20,
|
|
height: 20,
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: Colors.orange,
|
|
border: Border.all(
|
|
color: Colors.white,
|
|
width: 2,
|
|
),
|
|
),
|
|
child: const Icon(
|
|
Icons.help_outline,
|
|
color: Colors.white,
|
|
size: 12,
|
|
),
|
|
);
|
|
}
|
|
} |