Jerry Chen

Results 15 comments of Jerry Chen

can you print the refDate? the default Swift Date constructor is located to local time and Date itself doesn't contain the concept of timezone.

refer to https://github.com/quire-io/scroll-to-index/blob/master/lib/scroll_to_index.dart#L481, the concept is that you will get the offset to reveal the target widget based on alignment 0 and 1 (means the top and bottom of the...

the cells in chat list should be dynamic height. you can use https://github.com/google/flutter.widgets/tree/master/packages/scrollable_positioned_list for the very long and dynamic height list to get better UX. if you decide to use...

not quite sure what the actual case you got. can you provide the sample code, so i can reproduce it?

the implementation underlying this package did many steps to `search` and `scroll to`. the `AutoScrollTag` search is unpredictable, so it's pretty hard to get this feature work.

https://github.com/flutter/flutter/blob/db51e5d944413df72f06110d1c7a420133ea83fd/packages/flutter/lib/src/widgets/editable_text.dart#L2311 with editing your local flutter codebase, it shall be a workaround for fixing this issue.

Hi, glad to hear you love it : D for this issue, may you provide the simple code example for debug?

using numbers as key is because it will count on the order to forecast which direction and what distance we may move to. And the index is also matching the...

Hi @Ortes, This feature can actually be achieved using an alternative method. e.g. ``` await scrollController.scrollToIndex(10); await scrollController.animateTo(scrollController.offset + [Offset], ...); ``` since the underlying implementation works the same way....

Sorry for the late response; there was a permission issue with this repo. Regarding your case with the pinned header, is viewportBoundaryGetter sufficient for your needs? You can refer to...