@@ -43,7 +43,6 @@ class PortTheme {
4343 /// - [connectedColor] : Color when the port has active connections
4444 /// - [highlightColor] : Color when port is highlighted during connection drag
4545 /// - [highlightBorderColor] : Border color when port is highlighted
46- /// - [snappingColor] : Color for the snapping circle shown around port during hover
4746 /// - [borderColor] : Color of the port's border
4847 /// - [borderWidth] : Width of the port's border in logical pixels
4948 /// - [showLabel] : Whether to show port labels globally (default: false)
@@ -57,7 +56,6 @@ class PortTheme {
5756 required this .connectedColor,
5857 required this .highlightColor,
5958 required this .highlightBorderColor,
60- required this .snappingColor,
6159 required this .borderColor,
6260 required this .borderWidth,
6361 this .shape = MarkerShapes .capsuleHalf,
@@ -96,12 +94,6 @@ class PortTheme {
9694 /// that the port is a valid target.
9795 final Color highlightBorderColor;
9896
99- /// The color for the snapping circle shown around the port during hover.
100- ///
101- /// This semi-transparent circle provides visual feedback for the snap area
102- /// around the port where connections can be made.
103- final Color snappingColor;
104-
10597 /// The color of the port's border.
10698 ///
10799 /// When [borderWidth] is greater than 0, this color is used for the
@@ -173,7 +165,6 @@ class PortTheme {
173165 Color ? connectedColor,
174166 Color ? highlightColor,
175167 Color ? highlightBorderColor,
176- Color ? snappingColor,
177168 Color ? borderColor,
178169 double ? borderWidth,
179170 MarkerShape ? shape,
@@ -188,7 +179,6 @@ class PortTheme {
188179 connectedColor: connectedColor ?? this .connectedColor,
189180 highlightColor: highlightColor ?? this .highlightColor,
190181 highlightBorderColor: highlightBorderColor ?? this .highlightBorderColor,
191- snappingColor: snappingColor ?? this .snappingColor,
192182 borderColor: borderColor ?? this .borderColor,
193183 borderWidth: borderWidth ?? this .borderWidth,
194184 shape: shape ?? this .shape,
@@ -217,7 +207,6 @@ class PortTheme {
217207 connectedColor: Color (0xFF2196F3 ),
218208 highlightColor: Color (0xFF42A5F5 ),
219209 highlightBorderColor: Color (0xFF000000 ),
220- snappingColor: Color (0x4042A5F5 ),
221210 borderColor: Colors .transparent,
222211 borderWidth: 0.0 ,
223212 showLabel: false ,
@@ -247,7 +236,6 @@ class PortTheme {
247236 connectedColor: Color (0xFF64B5F6 ),
248237 highlightColor: Color (0xFF90CAF9 ),
249238 highlightBorderColor: Color (0xFFFFFFFF ),
250- snappingColor: Color (0x4090CAF9 ),
251239 borderColor: Colors .transparent,
252240 borderWidth: 0.0 ,
253241 showLabel: false ,
0 commit comments