dropdownWidth property

  1. @override
Token get dropdownWidth

Default dropdown trigger container width (default: 100%, CSS variable: --naki-dropdown-width).

Implementation

@override
Token get dropdownWidth => component?.dropdownWidth != null
    ? Token(
        value: component!.dropdownWidth!.cssText,
        name: super.dropdownWidth.name,
      )
    : super.dropdownWidth;