Nabeel Parkar

Results 406 comments of Nabeel Parkar

Is the jank visible when using `--enable-impeller`?

## Triage report I can reproduce this issue on an iPhone 12 Pro Max. I wasn't able to get a good recording as it is subtle in my opinion, though...

Based on @a-ibrkh's comment (thank you btw), this looks like it's intended. The final app size may be lower after it's processed by Apple's servers. Kind of how an Android...

Hello @BunnyBuddy. Thank you for filing this issue. Can you please provide the following information? - A [complete and minimal, reproducible code sample](https://stackoverflow.com/help/minimal-reproducible-example). Ideally, a single `main.dart` file that can...

If I understand what you're proposing, is to have a way for the app to ask the user to open the URL in an external browser, instead of opening it...

iPhone will ask the user as well. If you have Chrome as your default browser, iOS will ask the user whether they want to use Safari or the default browser....

Hello @jipiloub. I tried this with the current master version and I am unable to reproduce this issue. Am I missing anything?

Is this reproducible with the default counter app generated with `flutter create`?

Can you provide the verbose logs `flutter run -v` of running a newly generated project? Basically, run the following script: ```console flutter create issue_120113 cd issue_120113 flutter run -v ```

Hello @dputko. I can reproduce this issue, though it can be fixed with the following code: ```dart import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; void main() { runApp(const MyApp()); } final router =...