FlutterLoader.loadEntrypoint is deprecated. Use "FlutterLoader.load" instead. While run flutter for chrome
Problem:
"FlutterLoader.loadEntrypoint" is deprecated. Use "FlutterLoader.load" instead.
The above error will show while run my flutter app in chrome.
Solution:
The error because entry point is not set in your flutter app.
<script>
window.addEventListener('load' , function(ev) {
// Download main.dart.js
_flutter.loader.loadEntrypoint ({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
Then replace with below code it will works.
window.addEventListener('load' , function(ev) {
// Download main.dart.js
_flutter.loader.load({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
Comments
Post a Comment