diff --git a/lib/screens/graph_view.dart b/lib/screens/graph_view.dart index 2fd2fd9a..b30d42c7 100644 --- a/lib/screens/graph_view.dart +++ b/lib/screens/graph_view.dart @@ -160,9 +160,14 @@ class NodeWidget extends StatelessWidget { Container( width: size, height: size, - decoration: const BoxDecoration( + decoration: BoxDecoration( color: Colors.orange, shape: BoxShape.circle, + border: Border.all( + width: 1, + color: Colors.black, + style: BorderStyle.solid, + ), ), ), Text(label, style: textStyle),