Notice
Recent Posts
Recent Comments
Link
목록ListView (1)
모노산달로스의 행보

플러터는 크로스 플랫폼 개발에서 강력한 파워를 보여주는 프레임워크이다. 주로 파이어베이스와 함께 애플리케이션 개발에 사용된다. 문제 발생 프로젝트를 진행하면서 공부하던 도중 Firebase와 연동하는 작업에 문제가 생겼다. 발생한 오류는 다음과 같다: StreamBulder를 통해 Firebase에 저장된 데이터를 읽어 만든 List를 화면에 표시하지 못한다. return StreamBuilder( stream: FirebaseFirestore.instance.collection('Goals').orderBy('timestamp').snapshots(), builder: (context, snapshot) { if (snapshot.hasError) return Text('ERROR: ${snapshot..
App/Flutter
2024. 3. 27. 18:24