Ahmed Elsayed
Ahmed Elsayed
We're encountering the same issue with data messages (silent notifications) on iOS in version `15.1.3` `onMessage` callback never triggers while it works fine for Android. The workaround from @areynolds8787 didn't...
This is already applicable. Starting from version `3.0.0-beta.13`, instead of: ```dart final dropdownKey = GlobalKey(); @override Widget build(BuildContext context) { return Column( children:[ DropdownButton2( // Other properties... key: dropdownKey, );...
> Hi, If I am not wrong, you can see here that the state class is private, on my PR I make It to public removing the underscore and make...
> I don't the time to investigate third-party packages. If this is important for you, I'd suggest looking into the issue yourself :) I'm not sure if it's related to...
_**Note to myself:**_ Manually listening to the stream: ```dart final todoStreamProvider = StreamProvider.autoDispose((ref) { final controller = StreamController(); todoStream().listen((v) => controller.add(v)); ref.onDispose(() => controller.close()); return controller.stream; }); ``` instead of...
Running the example with version `3.0.0-dev.12` works fine :) It seems the issue was resolved in that release.
That's currently not possible.
Pushing the dropdown to top when keyboard open is desired. What's the issue exactly here?
Can you show minimal sample that produces the issue?
I need a minimal sample that I can run on my device. Can you try using the latest `3.0.0-beta.16` version?