전체 글 (12) 썸네일형 리스트형 flutter + firebase 연동하기 1. firebase 프로젝트 추가 https://console.firebase.google.com/u/0/ 2. firebase flutter 앱 추가 만들었던 프로젝트에 들어가서 flutter 앱추가 먼저 Firebase CLI를 설치하고 firebase login하기 https://firebase.google.com/docs/cli?authuser=0&hl=ko#install_the_firebase_cli Firebase CLI 참조 | Firebase Documentation FirebaseVisionOnDeviceAutoMLImageLabelerOptions firebase.google.com 두번째 줄의 커맨드는 flutter 프로젝트 root에서 입력해야한다. 해당 flutter projec.. flutter CustomPaint CustomPainter 화면을 직접 그릴 때 사용한다. 기존의 UI로 만들기 어려운 화면을 만들고 싶을 때 유용하다. Canvas : 그림을 그리는 동작이 기록된다. Paint : 그림의 특성들을 저장한다. CustomPainter : Canvas, Paint를 담아낸다. CustomPaint : CustomPainter의 상위 위젯이다. CustomPainter 구현 class MyPainter extends CustomPainter{ @override void paint(Canvas canvas, Size size) { Paint paint = Paint() // Paint 클래스는 어떤 식으로 화면을 그릴지 정할 때 사용 ..color = Colors.deepPurpleAccent // 선의 색 .. flutter listview (flutter codlabs) https://codelabs.developers.google.com/codelabs/first-flutter-app-pt1#0 Write your first Flutter app, part 1 | Google Codelabs Write your first Flutter app, part 1 1. Introduction Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and orga codelabs.devel.. 이전 1 2 3 4 다음