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
I am trying to create html image element using the following code: final html.ImageElement imgElement = html.ImageElement(src: url);
And I am getting this error on iOS/Android: Error: No named parameter with the name 'src'.
It is working fine on web as it should, but, for iOS, I will have to comment this out.
The text was updated successfully, but these errors were encountered:
same here - any solution to this ??
final imageElement = html.ImageElement(src: url); does not work on Android or iOS
final imageElement = html.ImageElement(src: url);
I tried to exclude it from any mobile compilation by:
if (kIsWeb) { final imageElement = html.ImageElement(src: url); // .. }
But the compiler still crashes when compiling for mobile. Any solution to this ?
Sorry, something went wrong.
Any news ? I am pretty desperate with this - since my product depends on this library....
No branches or pull requests
I am trying to create html image element using the following code:
final html.ImageElement imgElement = html.ImageElement(src: url);
And I am getting this error on iOS/Android:
Error: No named parameter with the name 'src'.
It is working fine on web as it should, but, for iOS, I will have to comment this out.
The text was updated successfully, but these errors were encountered: