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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demonstration: https://github.com/akvelon/flutter-code-editor/assets/31556582/327c4050-9021-469a-8b58-940127eef2fc
Reproducible example:
import 'package:flutter/material.dart'; import 'package:flutter_code_editor/flutter_code_editor.dart'; import 'package:flutter_highlight/themes/monokai-sublime.dart'; import 'package:highlight/languages/java.dart'; void main() { runApp(const CodeEditor()); } final controller1 = CodeController( text: '', language: java, ); final controller2 = CodeController( text: '', language: java, ); final controller3 = CodeController( text: '', language: java, ); class CodeEditor extends StatelessWidget { const CodeEditor({super.key}); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( body: CodeTheme( data: CodeThemeData(styles: monokaiSublimeTheme), child: DefaultTabController( length: 3, child: Scaffold( appBar: AppBar( bottom: const TabBar( tabs: [ Tab(icon: Icon(Icons.directions_car)), Tab(icon: Icon(Icons.directions_transit)), Tab(icon: Icon(Icons.directions_bike)), ], ), title: const Text('Popup bug'), ), body: TabBarView( children: [ SingleChildScrollView( child: CodeField( controller: controller1, ), ), SingleChildScrollView( child: CodeField( controller: controller2, ), ), SingleChildScrollView( child: CodeField( controller: controller3, ), ), ], ), ), ), ), ), ); } }
The text was updated successfully, but these errors were encountered:
Auto-format, update Flutter version in CI (#241)
eab3efe
Fix analyzer issues (#241)
76cef89
Fix tests (#241)
90d2d54
Issue 241: Dispose suggestions popup (#244)
052101c
* _suggestionsCloseNotifier * removed public notifier * Auto-format, update Flutter version in CI (#241) * Fix analyzer issues (#241) * Fix tests (#241) --------- Co-authored-by: Alexey Inkin <[email protected]>
nausharipov
Successfully merging a pull request may close this issue.
Demonstration:
https://github.com/akvelon/flutter-code-editor/assets/31556582/327c4050-9021-469a-8b58-940127eef2fc
Reproducible example:
The text was updated successfully, but these errors were encountered: