Nabeel Parkar
Nabeel Parkar
## Triage report I can reproduce this issue on `Master (3.7.0-3.0.pre.57)`. Screenshot Code Sample (Same as OP) ```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget...
Hello @hpomgithub. Thank you for filing this issue. Can you please provide the following information? - A [complete and minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). Ideally, a single `main.dart` file that can be...
Please provide a complete code sample, along with `main()` and the pages you're using, ideally in a single file
Using the following code sample, I get expected results: ```dart import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { MyApp({super.key}); final GlobalKey _rootNavigatorKey...
`path` is not null. It's an empty string at first since the `ShellRoute` is loading first with the default path of `''`. Then the `/a` path is loading which you...
Seems you have already raised an issue with the `name` being null https://github.com/flutter/flutter/issues/116516. And since `path` is also working as expected, I am not sure what the issue here is
Hello @higaski. Can this be reproduced by simulating slow connections through the devtools? Also, are there any logs printed in the console?
It could be possible that this is being caused due to HTTP. Could you try accessing the website by IP or using a self-signed cert and HTTPS?
Service workers need HTTPS enabled to work on non-localhost, yes. Since I can't reproduce this, can you confirm one more thing? If the app is run on your computer, does...
Final thing: Could you provide information on the devices you have reproduced this on, with the steps you took to set up the web server as well?