showDefaultFormlessOptionPickerSheet function
Built-in searchable bottom sheet; used when no custom presenter is provided.
Implementation
Future<void> showDefaultFormlessOptionPickerSheet(
FormlessOptionsSheetArgs args,
) {
return showOptionsSearchSheet(
context: args.context,
options: args.options,
onSelected: args.select,
theme: args.theme,
title: args.title,
);
}