AmirHossein Mohammadazadeh

Results 29 comments of AmirHossein Mohammadazadeh

@shaqian thank you for your comment I did what you said and removed ```android-arm64android.enableR8=true``` but now this happens: ``` Initializing gradle... 1.4s Resolving dependencies... 3.5s FAILURE: Build failed with an...

**Update:** Seems like this issue only happens when using the **html** renderer.

@icecandy I checked and the bug happens on all mobile browsers. Using canvaskit on mobile is not the best option. Would you happen to have any suggestions on how to...

Hey @Milad-Akarie. in that case there are no screens behind the current one because we have just reloaded the screen. Am I right?

@Milad-Akarie Correct. Also, interactivity is lost if you try to pop using a gesture. You can check the stack trace and the video to see this.

@Milad-Akarie I can send you a minimum working project so you can see the error for yourself if this would help.

I'm initiating it this way only in this example project and not in the actual project that I'm working on. And I can tell you that the issue persists.

### main.dart ```dart void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp.router( title: 'Flutter Test', theme: ThemeData.light(), routerConfig: AppRouter().config(...

@Milad-Akarie the hashtag is how you'd define a `Symbol`. Since the hero tag can be anything I prefer using a hashtag to create a symbol for it.

@Milad-Akarie Thank you for the great advice. I updated the minimum project that reproduces this issue. Should I use those methods only on the web or are they safe to...