akvelon / flutter-code-editor

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.
https://akvelon.com
Apache License 2.0
197 stars 47 forks source link

Material 3 causes progressing misalignment in code and line numbers #262

Open alexeyinkin opened 10 months ago

alexeyinkin commented 10 months ago

Note: This issue is about misalignment that progresses with each line. For equally misaligned lines with Material 2, see #261

Steps to reproduce:

  1. Take the 02.code_field example as of 0f18b2b1dab6cf7db3aeeb152fc02d287e662ea7
  2. Add the following property to MaterialApp:
      theme: ThemeData(
        useMaterial3: true,
      ),

Web:

image

iOS:

image
T2XX commented 4 months ago

you can solve it by using parameter:

 gutterStyle: const GutterStyle(textStyle: TextStyle(height: 1.5)),