TDropdown constructor
const
TDropdown({
- Key? key,
- TDropdownTheme? theme,
- List<
TDropdownItem> items = const [], - required Widget child,
- TDropdownTriggerMode triggerMode = TDropdownTriggerMode.hover,
- bool enabled = true,
- Widget builder(
- BuildContext context,
- VoidCallback close
Implementation
const TDropdown({
super.key,
this.theme,
this.items = const [],
required this.child,
this.triggerMode = TDropdownTriggerMode.hover,
this.enabled = true,
this.builder,
});