Nabeel Parkar

Results 406 comments of Nabeel Parkar

@GeorgePagounis Is it possible to remove any logic here on country selection and just provide a bare minimum code to reproduce this issue? No fake async call. Just an overlay...

## Triage report I can reproduce this issue on stable and master. I can confirm this is a regression. I have spent a bit of time bisecting it to f5e4d2b4275b2be4712d77f4e5e5604ae394409c....

Since this is working as expected as of https://github.com/flutter/flutter/issues/119390#issuecomment-1411334780, I am closing this issue

Hello @rydmike. Thank you for the detailed issue. Can I suggest these be split up into multiple issues instead of one large one or is this issue meant to be...

Thank you for the clarification @rydmike. I'll label this issue for further insights from the team :)

I believe [`lint`](https://pub.dev/packages/lint) has very strict lints enabled. This is backward compatible right now with the `*Error` classes having deprecation notices instead of removing them :) You can decide when...

Sure. Since the `*Error` classes extend the new `*Exception` classes, it should be backward compatible. I'll see what I can come up with in tests to prove this sometime tomorrow....

Ahh I rechecked this. Sorry I was wrong. This is not backwards compatible. Throwing a `RedisExeption` for example and catching a `RedisError` will not work, since `RedisError` extends `RedisException` and...

Hey @ra1u. I've updated the PR based on your feedback. Let me know if there is anything else I need to do :)

## Triage report I can reproduce this issue on a Samsung S9+ running Android 8 Code Sample (Same as OP) ```dart import 'package:flutter/material.dart'; void main() { runApp(const MyHomePage()); } class...