Used flutter to build a web app, but I keep getting a grey screen in Opera. I know that this can happen with flutter if there is a UI error, but the website is working perfectly fine in Chrome, IE, Edge, and Safari. The console in developer mode gives me this error: "NoSuchMethodError: method not found: 're' on null". The "re" part of the error changes. I've seen it be "rg" and "rf", and google search has failed me when it comes to resolution. Any suggestions would be appreciated.
Asked
Active
Viewed 181 times
1
-
I can't tell which browser feature exactly which is involved. But I can insinuate that there is a feature that Opera doesn't support but is crucial to Flutter web. And if you are familiar with web development, you will know that browser support is a big topic. caniuse.com would that have been helpful to confirm if it is a browser support issue. But here we can't tell the exact browser feature. Sorry about the above. – Obum Aug 03 '22 at 00:44
1 Answers
0
If you specified rendered as HTML maybe that's the reason. Please build without specifying a renderer. Just use flutter build web
and try once please

Kaushik Chandru
- 15,510
- 2
- 12
- 30
-
That's what I always use. I don't specify a renderer. It is hosted on firebase, but I don't think that makes a difference. – QuinLLC Aug 03 '22 at 04:43
-
Okay great. Try building with flutter run -d web-server and run it in opera – Kaushik Chandru Aug 03 '22 at 04:55
-
Sorry for the super late reply. I have been trying to multiple things to get more information about the issue, but don't have more details. – QuinLLC Aug 13 '22 at 02:36