hm21 / pro_image_editor

The pro_image_editor is a Flutter widget designed for image editing within your application. It provides a flexible and convenient way to integrate image editing capabilities into your Flutter project.
https://hm21.github.io/pro_image_editor/
BSD 3-Clause "New" or "Revised" License
119 stars 69 forks source link

Can you remove the "enableSuggestions" or "autocorrect" in the textfield when user types in the TextEditor? That underline in the is confusing #132

Closed ember11498 closed 4 months ago

ember11498 commented 4 months ago

Platforms

Android, iOS

Description

Title self explanatory.

Thanks in advance.

Why

improve visual display

hm21 commented 4 months ago

I just released version 4.0.10 where you can now disable it in the TextEditorConfigs like below:

configs: ProImageEditorConfigs(
  textEditorConfigs: const TextEditorConfigs(
    enableSuggestions: false,
    autocorrect: false,
  ),
),