optionWidth property

double? optionWidth
final

The width for the each option (from options).

The default value is:

constraints.maxWidth / 3.5; // constraints is a instance of BoxConstraints

Example of usage:

TypeSelector(
  separatorWidth: 5.0,
  // other properties
);

Implementation

final double? optionWidth;