스크롤이 가능한 화면에서 끝까지 당겼을 때 데이터를 갱신하는 ui
https://material.io/design/platform-guidance/android-swipe-to-refresh.html#usage
...
body: RefreshIndicator(
child: (무조건 리스트뷰 같은 스크롤 가능한 위젯)
onRefresh: (갱신용 콜백)
),
...
onRefresh: 갱신 콜백
child : 리스트뷰 같은 스크롤 가능한 위젯
https://pub.dev/packages/pull_to_refresh
좀 더 세밀한 컨트롤이 가능하다.