Ask Your Question
4

What does the error message "Error: Not found: 'dart:js'" mean when executing a flutter application in an iOS simulator?

asked 2023-06-25 17:21:49 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-25 17:30:02 +0000

nofretete gravatar image

The error message "Error: Not found: 'dart:js'" usually means that the Dart virtual machine is trying to import the 'dart:js' library but fails because it cannot find it. This error typically occurs when running a Flutter application in an iOS simulator because the 'dart:js' library is only available for web applications, and not for iOS or Android.

To fix this error, you can remove any references to the 'dart:js' library in your code. If you are using a third-party package that relies on the 'dart:js' library, you may need to find an alternative package that does not depend on this library or create a conditional import that only includes the package when running a web application.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-25 17:21:49 +0000

Seen: 12 times

Last updated: Jun 25 '23