I am working on a flutter application. Recently I have enabled this application for web and its running fine if I run it from Android Studio by clicking on Run button.
The problem is when I run it on localhost or I build it for release it gives en error that is Another exception was thrown: Instance of 'minified:bV<void>
and the page appears blank in gray color.
In the page that is broken, I have used flower kind of layout. I have modified this library. It was working fine on localhost too before but, its breaking now.
Please suggest.
Below are the details:
Flutter Version - v1.14.6 (Beta)
Commands: I use below commands to run the app on localhost.
cd build/web
flutter build web -t lib/main_web.dart
flutter pub global activate dhttpd
flutter pub global run dhttpd
Thanks in advance.