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 creating a stateful widget for WebUiSettings, per your updated example, so that it can be initialized:
WebUiSettings
@override void initState() { super.initState(); /// IMPORTANT: must to call this function widget.initCropper(); }
the customDialogBuilder will not actually take a widget. it's throwing with this error:
customDialogBuilder
The return type '_CropperWidget' isn't a 'Dialog', as required by the closure's context.
The text was updated successfully, but these errors were encountered:
that's my bug, customDialogBuilder should return Widget instead, I've just release 7.0.4 to fix it. Please have a try
Widget
7.0.4
Sorry, something went wrong.
Yep, thanks much. I still had to wrap it in a Dialog for my custom design purposes, but it properly takes any widget now.
Dialog
No branches or pull requests
When creating a stateful widget for
WebUiSettings
, per your updated example, so that it can be initialized:the
customDialogBuilder
will not actually take a widget. it's throwing with this error:The return type '_CropperWidget' isn't a 'Dialog', as required by the closure's context.
The text was updated successfully, but these errors were encountered: