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