closeToTrailing property

bool closeToTrailing
final

when reverse property of List is true, layout is as following. it likes chat list, and new session will insert to zero index but it's not right when items are not full of viewport.

 trailing

| | | | | item2 | | item1 | | item0 |

 leading

to solve it, you could set closeToTrailing to true, layout is as following. support ExtendedGridView,ExtendedList,WaterfallFlow it works not only reverse is true.

 trailing

| item2 | | item1 | | item0 | | | | |

 leading

Implementation

final bool closeToTrailing;