-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
BUG - Support for WebAssembly (Wasm) #23
Open
joaovvrodrigues opened this issue
Nov 14, 2024
· 4 comments
· May be fixed by Flutterando/modular#982
Open
BUG - Support for WebAssembly (Wasm) #23
joaovvrodrigues opened this issue
Nov 14, 2024
· 4 comments
· May be fixed by Flutterando/modular#982
Comments
joaovvrodrigues
changed the title
Support for WebAssembly (Wasm) BUG
BUG - Support for WebAssembly (Wasm)
Nov 14, 2024
Reported by @ArturLevchuk a more 2 weeks ago. |
+1 |
Working on it! |
7 tasks
Please try to override the flutter_modular dependency like that: dependency_overrides:
flutter_modular:
git:
url: https://github.com/davidsdearaujo/modular.git
ref: dcadc389f546680cc9b63cf3f7b5e65ded8361ae
path: flutter_modular This will point to this PR, please take a look at the PR description: Drop a comment in the PR if it worked for you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug:
Flutter 3.24 or newer supports running a web app with Wasm using
flutter run --wasm
.Auto-Injector for wasm.
RuntimeError: dereferencing a null pointer at ModularRouteInformationParser. This could be related to an issue when parsing routes in Flutter Web.
AutoInjector Error:
There's an error in the AutoInjectorImpl._resolveBind method, specifically when resolving an instance by class name. This might indicate an issue with dependency injection where the required instance could not be found or injected.
It seems that the core issue is within the dependency injection process (AutoInjectorImpl) and how ModularRouteInformationParser handles routing, especially on Flutter Web.
Environment:
Flutter: 3.24.4
flutter_modular: ^6.3.4
auto_injector: ^2.0.5
To Reproduce
The text was updated successfully, but these errors were encountered: