defaultSpellCheckSuggestionsToolbarBuilder static method

  1. @visibleForTesting
Widget defaultSpellCheckSuggestionsToolbarBuilder(
  1. BuildContext context,
  2. EditableTextState editableTextState
)

Default builder for the spell check suggestions toolbar in the Cupertino style.

See also:

Implementation

@visibleForTesting
static Widget defaultSpellCheckSuggestionsToolbarBuilder(
  BuildContext context,
  EditableTextState editableTextState,
) {
  return CupertinoSpellCheckSuggestionsToolbar.editableText(
    editableTextState: editableTextState,
  );
}