Jonathan Böcker

Results 30 comments of Jonathan Böcker

In the latest version, it can make a big difference where in the hierarchy the ArrowContainer is placed. You can try moving it closer or further away from the arrow...

I've come to notice, it does not work in lazily rendered Widgets, i.e. ListView, where Widgets are not laid out until shown on screen. Thus, it is not possible to...

@kaciula I had the same problem with arrows not moving, but in a vertical list. I added an optional list of `Listenable` as argument to the `ArrowContainer` constructor, where you...

Version 0.5.0 is published, and it should work better now with scrollable widgets.

@sircambridge You can pass both scrollcontrollers to `ArrowContainer`: ```dart ArrowContainer( listenables: [scrollController1, scrollController2], child: YourWidget(), ); ```

This is also a problem downstream in `package:retrofit`, where/when content type is always JSON but response body is empty. Is there someone that can approve this? @ueman ?

Hey, thanks for the input! Can I ask you for a pull request with the changes you want?

> Which AWS services would you want to interact with using an AWS Dart SDK? You could make a somewhat data driven decision based on the [popularity of these packages](https://pub.dev/packages?q=dependency%3Ashared_aws_api&sort=popularity)....

> Are you sure it's not double quoting it, as: // exampleKey: "${file(..\/..\/bar.yml)}" Oh yeah, that's right. When skipping the `{` and `}` characters, everything worked as expected during experimentation,...

![Image](https://github.com/user-attachments/assets/a399ccf9-b60d-4db0-95a1-4324e93e5efd) Hi, back again. I'm trying to insert the following value in a map: ```yaml $ref: "#/components/schemas/fooObject" ``` using this snippet: ```dart final specEditor = YamlEditor(asyncApiSpecText); specEditor.update( ['some', 'path'], {'\$ref':...