오늘은 마지막으로 indicator 를 추가하여 데이터 가져오는 동안 사용자에게 기다리는 화면을 보여주는 방법에 대해서 알아보겠습니다.
개발환경 : 윈도우11, 안드로이드 스튜디오(Arctic Fox 2020.3.1 Patch 4), flutter 2.8.1
소스코드 위치 - Release indicator · mike-bskim/weather (github.com)
패치키 추가
flutter_spinkit: ^5.1.0
loading.dart 수정 - build 부분만 수정하면 됩니다.
@override
Widget build(BuildContext context) {
return const Scaffold(
backgroundColor: Colors.amber,
body: Center(
child: SpinKitDoubleBounce(
color: Colors.white,
size: 80.0,
),
),
);
}
[참고자료] 코딩셰프
- [https://www.youtube.com/watch?v=mPMQ3GC96JA&list=PLQt_pzi-LLfoOpp3b-pnnLXgYpiFEftLB&index=19]
'Flutter > 10 app Weather' 카테고리의 다른 글
[Flutter] App Weather - 5단계 추가 데이터 & 모델링 (0) | 2022.04.29 |
---|---|
[Flutter] App Weather - 4단계 UI (0) | 2022.04.29 |
[Flutter] App Weather - 3.5단계 model of openweathermap (0) | 2022.04.28 |
[Flutter] App Weather - 3단계 json from openweathermap (0) | 2022.04.28 |
[Flutter] App Weather - 2단계 http & json (0) | 2022.04.27 |