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
Hi, i cannot get this to work in FutureBuilder, any ideas? When testing RichTextEditor above FutureBuilder, it renders properly.
final controller = HtmlEditorController(); FutureBuilder<BookChapter>( future: DBProvider().getTranscript(s.mId as int), builder: (context, snapshot) { if (snapshot.hasData) { BookChapter bc = snapshot.data!; if (bc.content != null) { Container( width: 500, height: 500, child: RichTextEditor( alwaysShowButtons: true, placeholders: [ RichTextPlaceholder("TEST"), ], controller: controller, initialValue: content, onChanged: (String html) {
The text was updated successfully, but these errors were encountered:
Hi, what behaviour are you getting? Any error? Just a shot in the blue but isn't a return statement missing there before the Container?
return
Container
Sorry, something went wrong.
No branches or pull requests
Hi, i cannot get this to work in FutureBuilder, any ideas?
When testing RichTextEditor above FutureBuilder, it renders properly.
The text was updated successfully, but these errors were encountered: