futurebuilder Snapsot
-
[flutter] FutureBuilder 메서드의 AsyncSnapsot 과 Snapshotflutter/flutter 공부 2023. 2. 21. 11:34
flutter 에서 외부 통신을 통해 가져오는 작업을 하게 되면 Future 에 담아줘야 하는데 받아온 결과의 타입이 Future 로 되어 있기 때문에 직접 하나 하나 담아주는 것보다는 FutureBuilder 를 이용해서 받아오도록 하는게 좋은 것 같아서 사용하고 있습니다. FutureBuilder( future: _calculation, // a previously-obtained Future or null builder: (BuildContext context, AsyncSnapshot snapshot) { List children; if (snapshot.hasData) { children = [ const Icon( Icons.check_circle_outline, color: Colors.gr..