trackOutlineColor property
final
The outline color of this Switch's track.
Resolved in the following states:
This example resolves the trackOutlineColor based on the current
WidgetState of the Switch, providing a different
link
Color
when it is
WidgetState.disabled.
Switch(
value: true,
onChanged: (bool value) { },
trackOutlineColor: WidgetStateProperty.resolveWith<Color?>((Set<WidgetState> states) {
if (states.contains(WidgetState.disabled)) {
return Colors.orange.withOpacity(.48);
}
return null; // Use the default color.
}),
)
If specified, overrides the default value of Switch.trackOutlineColor.
Implementation
final MaterialStateProperty<Color?>? trackOutlineColor;