We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
See an example here:
The text was updated successfully, but these errors were encountered:
Adding a gutter style fixed it for me:
CodeField( gutterStyle: const GutterStyle( textStyle: TextStyle(height: 1.5), showLineNumbers: true, ), controller: controller, )
Got this from: #270 (comment)
Sorry, something went wrong.
Quick Fix: Copy the library to your local project. or Fork flutter_code_editor repository
For more advance solutions you can define gutterPadding within the widget and pass it when you call CodeField Widget
Quick Fix: Copy the library to your local project. or Fork flutter_code_editor repository Navigate to the code of the package and modify within.(cmd + left click --> on MAC) on CodeField Widget. Navigate to GutterWidget (CMD + F --> GutterWidget) Wrap the GutterWidget in a Container and add padding top 4.
@simeonangelov94
padding: EdgeInsets.only(top: 3) solved my issue You are a legend
No branches or pull requests
See an example here:
The text was updated successfully, but these errors were encountered: