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
When i use summernote on page. if i press back button then the navigator does not pop that page.
The text was updated successfully, but these errors were encountered:
Have you add Navigator.pop() in your code? can you tell me how you use this package? thanks.
Sorry, something went wrong.
`class HtmlEditor extends StatefulWidget { final String _text;
HtmlEditor(this._text);
@OverRide State createState() => _HtmlEditorState(); }
class _HtmlEditorState extends BaseState { GlobalKey _keyEditor = GlobalKey();
@OverRide Widget build(BuildContext context) { String text = widget._text ?? ""; return Scaffold( resizeToAvoidBottomPadding: true, backgroundColor: Colors.white, extendBodyBehindAppBar: false, body: FlutterSummernote( key: _keyEditor, value: text, hasAttachment: false, showBottomToolbar: false), ); } } ` I'm having same issue with 0.2.2 version and code pasted above
No branches or pull requests
When i use summernote on page.
if i press back button then the navigator does not pop that page.
The text was updated successfully, but these errors were encountered: