Open BenoistDemeure opened 2 weeks ago
Can you share the console log? Open the web app in Google Chrome, right-click, select Inspect
then Console
tab.
Since i reopened android studio , i have no more the error. But a colleague is facing to the same problem on 50% of the launches... He will give you more explanation
(using flutter 3.24.0)
I'm facing the same issues as explained by @BenoistDemeure. These issues seem to only appear when starting the project in debug flutter mode.
During my successive attempts to launch main.dart :
Error in chrome console : dom.dart:184 Rejecting promise with error: TypeError: Cannot read properties of undefined (reading 'webPluginRegistrar')
Error in chrome console : _dart_sdk.js:56 Uncaught TypeError: Cannot read properties of undefined (reading 'Symbol(_privateNames)')_
Error in chrome console : dom.dart:184 Rejecting promise with error: TypeError: Cannot read properties of undefined (reading 'DeviceInfoPlusWebPlugin')
- TypeError: Cannot read properties of undefined (reading 'DeviceInfoPlusWebPlugin')
Newer versions of flutter_quill
(including the one you're using) don't depend on device_info_plus
or DeviceInfoPlusWebPlugin.
flutter_quill
added?The flutter pub upgrade
is needed to update the transitive dependencies in your project.
I confirm that the issue still happens on an empty project with only flutter_quill
added (same version as previous) when quill_native_bridge_web
seems to be in version 0.0.1-dev.4.
flutter pub upgrade
as suggested seems to have solved the problems for some reason as i am unable to reproduce the problems. Only one dependency changes : quill_native_bridge_web
going from 0.0.1-dev.4 to 0.0.1-dev.5Here is a full video of my manipulation : https://github.com/user-attachments/assets/4ecb52f9-0fde-4aec-8f67-232dc71cc0e4
Is there an existing issue for this?
The question
I created a default flutter web project with Android Studio. When i add the dependency to flutter_quill, then chrome stuck on the loading flutter loading screen ( the blue linear progress on top of the page loop indefinitely ) when i remove this dependency, the app run correctly