flutter-code-editor icon indicating copy to clipboard operation
flutter-code-editor copied to clipboard

Flutter Code Editor is a multi-platform code editor supporting syntax highlighting, code blocks folding, autocompletion, read-only code blocks, hiding specific code blocks, themes, and more.

Results 89 flutter-code-editor issues
Sort by recently updated
recently updated
newest added

Expose [`smartDashesType`][1] and [`smartQuotesType`][2] on the underlying `TextField`, and disable them by default. This fixes an issue where typing a `"` on the iOS keyboard would automatically be replaced by...

Is it planned to support HTML in the language list ? Would be very helpful

Hi, Here are two commits: 1. I made `Autocompleter` abstract class and renamed default one to `DefaultAutocompleter`, so user can create its own implementation - also created `SuggestionItem` to be...

When I run my project, using the CodeField option I get an error in the console, but the application continues working normally, should I be worried? am I doing something...

Is it possible to turn off transparency for autocomplete popup? ![image](https://github.com/akvelon/flutter-code-editor/assets/33786293/edeb84cc-8018-4384-be4d-6005549d1df5)

Hi! Thank you for taking the time to read this. I am constantly getting uncaught exceptions because of this error: Null check operator used on a null value. Here: ![image](https://github.com/user-attachments/assets/b2885b30-d1ef-45d0-ada5-93976f19d659)...

I could really use a horizontal scrollbar, because sometimes the code is pretty wide. I don't want to use text wrapping, either, because that does not look great on code....

CodeField does not scroll horizontally on iOS. Check your example 02, you can scroll vertically but not horizontally. Works fine on Android though. How can i make it scrollable for...

I could not find a way to disable the code Analyzer. Is it possible? Otherwise it would be nice if the default `analyzer` for `CodeController` is no analyzer.

The library uses `WidgetsBinding.instance.addPostFrameCallback` and uses the context in the callback without checking if the state is actually still mounted. This may not cause issues most of the time –...