본문 바로가기
개발/Flutter

거꾸로 써서 위치가 아래부터 나올때

by dev_caleb 2022. 1. 24.
728x90

https://stackoverflow.com/questions/55095773/reverse-list-in-listview-builder-in-flutter

 

Reverse list in ListView.builder in Flutter

I wanted to reverse list and I have achieved this by using reverse: true,. It is working, but the list has aligned to the bottom and showing blank space at the top when the list has least items.

stackoverflow.com

 

 

         Align(
            alignment: Alignment.topCenter,
            child: ListView.builder(
              reverse: true,
              shrinkWrap: true,
              ...
              ...
           )
         )
728x90

'개발 > Flutter' 카테고리의 다른 글

flutter google map show label without click  (0) 2022.01.25
DartPad  (0) 2022.01.24
stream cancel 하기  (0) 2022.01.23
flutter scroll bottom으로 보내기  (0) 2022.01.23
플러터 firebase 강좌 추천  (0) 2022.01.02