renderSuggestionTileTrailing method
Widget?
renderSuggestionTileTrailing(
- BuildContext context,
- KeyedOption<
K, T> option, - bool isSelected,
- SelectOption<
K, T> selectOption,
Renders the suffix for an item that shows up in the list of options. If this method returns null, then the leading spot will not be rendered
Implementation
Widget? renderSuggestionTileTrailing(
BuildContext context,
KeyedOption<K, T> option,
/// Whether the item we're building the trailing for is currently selected
bool isSelected,
/// A callback that can be used to change the bound form control selection
SelectOption<K, T> selectOption,
) {
return null;
}