selectionStrokeColor property
Specifies the stroke color for selected shape.
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfTheme(
data: SfThemeData(
mapsThemeData: SfMapsThemeData(
selectionStrokeColor: Colors.indigo
)
),
child: SfMaps(),
),
)
);
}
Implementation
final Color? selectionStrokeColor;