clragon
clragon
this is a breaking API change and according to semantic versioning it shouldnt be a patch or a minor but a major. 9.0.0 -> 10.0.0 This is important because dart...
Additionally to the above, it should already be possible to to what you wish for without this PR. For example: ```dart onPressed: () async { bool confirmed = false; final...
Hi, Can you explain how this is different from [PrimaryScrollController](https://api.flutter.dev/flutter/widgets/PrimaryScrollController-class.html)? `NestedScrollView` does already provide a `PrimaryScrollController` for its children, which you can then access with `PrimayScrollController.of(context)` and should already be...
you are incorrectly using `PrimaryScrollController`. `CustomScrollView` will remove the `PrimaryScrollController` for its descendants once it has consumed it. Its also not necessary to provide a `PrimaryScrollController` as `NestedScrollView` already does...
I see. Of course, because `CustomScrollView` swallows the `PrimaryScrollController`, you will not be able to access it in children of `CustomScrollView`. Thats why you would like to have a generalized...
Is this perhaps the issue also normally seen in nested navigators? Usually I have fixed this by clipping the nested navigator. I am not sure if thats possible with a...
I just ran into this issue while trying to test my file type input with a drop event. All the workarounds seem to be insane hacks though.
Further, I have found out that I can work around this issue with the following code: ```dart await Uri.parse('${folder.uri}%2F${Uri.encodeComponent(fileName)}')).toDocumentFile(); ``` which is basically just manually constructing the same URI and...
it feels like a somewhat missed opportunity to be unable to have extension types implement an interface. Imagine I have a type A and a type B. they are not...
This PR is mouth-watering. Anything we can do to help this come along?